We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc69b22 commit 680877cCopy full SHA for 680877c
.github/workflows/test.yml
@@ -17,11 +17,15 @@ jobs:
17
cancel_others: 'true'
18
concurrent_skipping: same_content
19
ruff:
20
- runs-on: ubuntu-latest
21
needs: pre_job
+ runs-on: ubuntu-latest
22
steps:
23
- uses: actions/checkout@v4
24
- - uses: chartboost/ruff-action@v1
+ - uses: astral-sh/ruff-action@v3
25
+ with:
26
+ version: latest
27
+ - run: ruff check
28
+ - run: ruff format --check
29
test:
30
needs: ruff
31
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
0 commit comments