Skip to content

Commit b7a8fd7

Browse files
committed
Added final job step
1 parent c3a4389 commit b7a8fd7

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/test-bench.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- main
1010

1111
jobs:
12-
test-bench-job:
12+
test-bench-matrix-job:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
@@ -54,3 +54,10 @@ jobs:
5454
- name: Run benchmarks
5555
run: |
5656
python -m unittest discover -s tests -p 'test_bench_*.py'
57+
58+
test-bench-job:
59+
needs: test-bench-matrix-job
60+
runs-on: ubuntu-latest
61+
steps:
62+
- name: test-bench-job
63+
run: echo "All bench tests passed."

.github/workflows/test-unit.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '**'
1010

1111
jobs:
12-
test-unit-job:
12+
test-unit-matrix-job:
1313
runs-on: ubuntu-22.04
1414
strategy:
1515
matrix:
@@ -60,3 +60,10 @@ jobs:
6060
uses: codecov/codecov-action@v4
6161
env:
6262
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
63+
64+
test-unit-job:
65+
needs: test-unit-matrix-job
66+
runs-on: ubuntu-latest
67+
steps:
68+
- name: test-unit-job
69+
run: echo "All unit tests passed."

0 commit comments

Comments
 (0)