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 98289d2 commit 9e2c1ecCopy full SHA for 9e2c1ec
.github/workflows/python.yml
@@ -10,10 +10,10 @@ jobs:
10
test:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
14
15
- name: Setup Python
16
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
17
with:
18
python-version: '3.9'
19
@@ -25,8 +25,8 @@ jobs:
25
26
- name: Lint
27
run: |
28
- ruff --format=github --select=E9,F63,F7,F82 --target-version=py39 .
29
- ruff --format=github --target-version=py39 .
+ ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py39 .
+ ruff --output-format=github --target-version=py39 .
30
31
- name: Test
32
0 commit comments