Skip to content

Commit

Permalink
Merge pull request #107 from 0Hughman0/0Hughman0-fix-publish-action
Browse files Browse the repository at this point in the history
Fixed error in publish action from linting wrong dir
  • Loading branch information
0Hughman0 committed Feb 15, 2024
2 parents 28ac49b + 328430b commit c5453f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Expand Up @@ -46,9 +46,9 @@ jobs:
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
poetry run flake8 cassini --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
poetry run flake8 cassini --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
poetry run pytest
Expand Down

0 comments on commit c5453f3

Please sign in to comment.