Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Dartvauder committed Nov 3, 2024
1 parent cee7c90 commit 1f26132
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,12 @@ jobs:
mkdir -p ./reports
pylint LaunchFile/ --output-format=json > ./reports/pylint-report.json || true
pylint LaunchFile/ --output-format=text > ./reports/pylint-report.txt || true
continue-on-error: true

- name: Run flake8
run: |
flake8 LaunchFile/ --max-line-length=120 --statistics --tee --output-file=./reports/flake8-report.txt || true
continue-on-error: true

- name: Check pylint score
run: |
Expand All @@ -123,11 +125,13 @@ jobs:
run: |
source venv/bin/activate
mypy LaunchFile/
continue-on-error: true

- name: Run tests
run: |
source venv/bin/activate
python -m unittest discover -s tests || true
continue-on-error: true

- name: Upload lint results
if: always()
Expand Down

0 comments on commit 1f26132

Please sign in to comment.