We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3851012 commit cf44f9bCopy full SHA for cf44f9b
.github/workflows/ci.yml
@@ -16,12 +16,12 @@ jobs:
16
python-version: "3.11"
17
18
# Pin ruff version to make sure we do not break our builds at the worst times
19
- - name: Install Ruff 0.0.244
20
- run: pip install ruff==0.0.244
+ - name: Install Ruff 0.5.1
+ run: pip install ruff==0.5.1
21
22
- # Include `--format=github` to enable automatic inline annotations.
+ # Include `--output-format=github` to enable automatic inline annotations.
23
- name: Run Ruff
24
- run: ruff check --format=github .
+ run: ruff check --output-format=github .
25
26
test:
27
# name: Test (${{ matrix.python-version }}, ${{ matrix.os }})
0 commit comments