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 5b4b68e commit f1a167eCopy full SHA for f1a167e
.github/workflows/ci.yml
@@ -7,15 +7,16 @@ on:
7
branches: [ main ]
8
9
jobs:
10
- test:
+ python-ci:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
python-version:
15
- '3.11.0'
16
- '3.12.0'
17
- '3.13.0'
18
-
+ fail-fast: false
19
+ name: Python CI (${{ matrix.python-version }})
20
steps:
21
- uses: actions/checkout@v4
22
@@ -44,4 +45,10 @@ jobs:
44
45
run: uv run task typecheck
46
47
- name: Test
- run: uv run task test
48
+ run: uv run task test
49
+
50
+ success-python-ci:
51
+ runs-on: ubuntu-latest
52
+ needs: python-ci
53
+ steps:
54
+ - run: echo "All matrix jobs succeeded!"
0 commit comments