Skip to content

Commit ddd8031

Browse files
committed
refactor: rename job to 'test_on_matrix' and add build job for CI checks
1 parent e757571 commit ddd8031

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build
1+
name: CI Checks
22

33
on:
44
push:
@@ -19,7 +19,8 @@ concurrency:
1919
cancel-in-progress: true
2020

2121
jobs:
22-
build:
22+
test_on_matrix:
23+
name: build (${{ matrix.os }}, py${{ matrix.python-version }})
2324
runs-on: ${{ matrix.os }}-latest
2425
timeout-minutes: 6
2526

@@ -63,4 +64,12 @@ jobs:
6364
name: Codecov
6465
uses: codecov/codecov-action@v4
6566
with:
66-
token: ${{ secrets.CODECOV_TOKEN }}
67+
token: ${{ secrets.CODECOV_TOKEN }}
68+
69+
build:
70+
name: build
71+
runs-on: ubuntu-latest
72+
needs: [test_on_matrix]
73+
steps:
74+
- name: All matrix builds and tests passed
75+
run: echo "All matrix jobs completed successfully."

0 commit comments

Comments
 (0)