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 f4438fd commit 83e9aa1Copy full SHA for 83e9aa1
.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