Skip to content

Commit

Permalink
Update lint_python.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thedev132 authored Jan 2, 2024
1 parent f480f41 commit 2e9c9cf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install bandit black codespell isort mypy pytest pyupgrade safety
- run: pip install bandit black codespell isort pytest pyupgrade safety
- run: bandit -r . || true
- run: black --check . || true
- run: codespell --ignore-words-list="followings" --quiet-level=2
- run: isort --check-only --profile black . || true
- run: pip install -r requirements.txt
- run: mypy --ignore-missing-imports .
- run: pytest . || true
- run: pytest --doctest-modules . || true
- run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true
Expand Down

0 comments on commit 2e9c9cf

Please sign in to comment.