We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb28943 commit 34fe4a1Copy full SHA for 34fe4a1
.github/workflows/ruff.yml
@@ -18,21 +18,21 @@ jobs:
18
runs-on: ubuntu-latest
19
steps:
20
- uses: actions/checkout@v4
21
-
+
22
- name: Set up Python
23
uses: actions/setup-python@v5
24
with:
25
python-version: '3.x'
26
27
- name: Install ruff
28
run: |
29
python -m pip install --upgrade pip
30
python -m pip install ruff
31
32
- name: Run ruff linter
33
34
ruff check --output-format=github .
35
36
#- name: Run ruff formatter (check only)
37
# run: |
38
# ruff format --check --diff .
0 commit comments