We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06712f4 commit 043a997Copy full SHA for 043a997
.github/workflows/main.yml
@@ -32,12 +32,9 @@ jobs:
32
- name: Display Python version
33
run: python -c "import sys; print(sys.version)"
34
35
- - name: Lint with flake8
+ - name: Lint with ruff
36
run: |
37
- # stop the build if there are Python syntax errors or undefined names
38
- uv run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
39
- # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
40
- uv run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+ uv run ruff check app tests
41
42
- name: Run tests with coverage
43
0 commit comments