Skip to content

Commit

Permalink
add ruff linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Jermiah committed Nov 18, 2023
1 parent f9afee3 commit 19edd29
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with Ruff
run: |
pip install ruff
ruff --format=github --target-version=py310 .
continue-on-error: true
- name: Test with pytest
run: |
coverage run -m pytest -v -s
Expand Down

0 comments on commit 19edd29

Please sign in to comment.