We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d589ee commit 7600c44Copy full SHA for 7600c44
2 files changed
.github/workflows/main.yml
@@ -14,7 +14,20 @@ concurrency:
14
cancel-in-progress: true
15
16
jobs:
17
+ code-quality:
18
+ runs-on: ubuntu-latest
19
+
20
+ steps:
21
+ - uses: actions/checkout@v5
22
23
+ - uses: actions/setup-python@v6
24
+ with:
25
+ python-version: '3.13'
26
27
+ - uses: pre-commit/action@v3.0.1
28
29
pytest:
30
+ needs: code-quality
31
name: py${{ matrix.python-version }} on ${{ matrix.os }}
32
runs-on: ${{ matrix.os }}
33
env:
.github/workflows/pre-commit.yml
0 commit comments