-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb5395b
commit d162bb9
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
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 B --max-absolute B |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
radon==4.5.* | ||
xenon==0.9.* |