Skip to content

Commit

Permalink
Remove safety from GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jan 31, 2023
1 parent 01a967c commit 1dc4db5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: pip install --upgrade pip wheel setuptools
- run: pip install --upgrade pip setuptools wheel
- run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear
flake8-comprehensions isort mypy pytest pyupgrade safety
flake8-comprehensions isort mypy pytest pyupgrade
- run: bandit --recursive --skip B101 . # B101 is assert statements
- run: black --check . || true
- run: codespell --ignore-words-list="commend" # --skip="*.css,*.js,*.lock"
Expand All @@ -22,4 +22,3 @@ jobs:
- run: mypy --ignore-missing-imports --install-types --non-interactive .
- run: pytest . || pytest --doctest-modules . || true
- run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true
- run: safety check

0 comments on commit 1dc4db5

Please sign in to comment.