We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec3de8d commit e291024Copy full SHA for e291024
.github/workflows/ci.yml
@@ -23,9 +23,7 @@ jobs:
23
uses: actions/cache@v3
24
with:
25
path: ~/.cache/pip
26
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
27
- restore-keys: |
28
- ${{ runner.os }}-pip-
+ key: ${{ runner.os }}-pip-ruff-v1
29
30
- name: Install dependencies
31
run: |
@@ -34,8 +32,8 @@ jobs:
34
32
35
33
- name: Auto-fix code with Ruff
36
37
- ruff format . --fix --line-length 88 --exclude migrations,venv || true
+ ruff check . --fix --line-length 88 || true
38
39
- name: Run Ruff linter
40
41
- ruff check . --select ALL --ignore F401,W391 --line-length 88
+ ruff check . --line-length 88
0 commit comments