Skip to content

Commit f1a167e

Browse files
committed
ci: rename test job to python-ci and add success message job
1 parent 5b4b68e commit f1a167e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ on:
77
branches: [ main ]
88

99
jobs:
10-
test:
10+
python-ci:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
1414
python-version:
1515
- '3.11.0'
1616
- '3.12.0'
1717
- '3.13.0'
18-
18+
fail-fast: false
19+
name: Python CI (${{ matrix.python-version }})
1920
steps:
2021
- uses: actions/checkout@v4
2122

@@ -44,4 +45,10 @@ jobs:
4445
run: uv run task typecheck
4546

4647
- name: Test
47-
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

Comments
 (0)