Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
lint_python.yml: Fix invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
dpriskorn committed Oct 1, 2022
1 parent d588cf2 commit d52e8da
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
- run: pip install --upgrade pip wheel
- run: poetry install --with=dev
- run: poetry run bandit --recursive --skip B301,B105,B403,B311,B101,B324 src # B101 is assert statements
- run: black --check .
- run: codespell # --ignore-words-list="" --skip="*.css,*.js,*.lock"
- run: flake8 --ignore=C408,C416,E203,F401,F541,R501,R502,R503,R504,W503
- run: poetry run black --check .
- run: poetry run codespell # --ignore-words-list="" --skip="*.css,*.js,*.lock"
- run: poetry run flake8 --ignore=C408,C416,E203,F401,F541,R501,R502,R503,R504,W503
--max-complexity=21 --max-line-length=162 --show-source --statistics .
- run: isort --check-only --profile black .
- run: poetry run isort --check-only --profile black .
- run: mkdir --parents --verbose .mypy_cache
- run: mypy --ignore-missing-imports --install-types --non-interactive .
- run: poetry run mypy --ignore-missing-imports --install-types --non-interactive .
- run: cp config/__init__example.py config/__init__.py
- run: pytest --exitfirst .
- run: shopt -s globstar && pyupgrade --keep-runtime-typing --py37-plus **/*.py
- run: safety check
- run: poetry run pytest --exitfirst .
- run: shopt -s globstar && poetry run pyupgrade --keep-runtime-typing --py37-plus **/*.py
- run: poetry run safety check

0 comments on commit d52e8da

Please sign in to comment.