Skip to content

Commit

Permalink
setup CI w codecomplexity job'
Browse files Browse the repository at this point in the history
  • Loading branch information
clavedeluna committed May 26, 2023
1 parent eb5395b commit d162bb9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/lint.yml
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
2 changes: 2 additions & 0 deletions requirements/complexity.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
radon==4.5.*
xenon==0.9.*

0 comments on commit d162bb9

Please sign in to comment.