Skip to content

Commit

Permalink
Lint Python with Ruff (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Mar 10, 2023
1 parent 3d828d2 commit 275c4b5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,11 @@ jobs:
uses: codecov/codecov-action@v3
with:
name: Python ${{ matrix.python-version }}

ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install --user ruff
- run: ruff --extend-select=C4,C9,I,PLC,PLE,PLR,U --format=github
--ignore=C414,I001,UP032 --target-version=py37 .

0 comments on commit 275c4b5

Please sign in to comment.