Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
m32 committed Aug 24, 2024
1 parent 230d583 commit 34c4b4d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@ on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
steps:
# - name: Use Node.js
# uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade pip setuptools
- run: pip install bandit black codespell flake8 isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B101 . # B101 is assert statements
Expand Down

0 comments on commit 34c4b4d

Please sign in to comment.