Packaging updates #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
concurrency: | |
group: (${{ github.workflow }}-${{ github.event.inputs.branch || github.event.pull_request.head.ref }}) | |
cancel-in-progress: true | |
jobs: | |
linting: | |
name: Pylint & Black Checks | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 3 | |
steps: | |
- name: Set Up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: pip install -r requirements/lint.txt | |
- name: Black Format Check | |
run: black --check . | |
- name: Run pylint | |
run: pylint codemodder/ tests/ integration_tests/ -v | |
complexity: | |
name: Code Complexity | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 3 | |
steps: | |
- name: Set Up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements/complexity.txt | |
- name: Run Radon | |
run: | | |
radon cc codemodder --min A --total-average | |
- name: Run Xenon | |
run: | | |
# threshold for pipeline to fail if we go below average, module, or block complexity | |
# https://github.com/rubik/xenon | |
xenon codemodder --max-average A --max-modules C --max-absolute C |