File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 - main
1010
1111jobs :
12- test-bench-job :
12+ test-bench-matrix- job :
1313 runs-on : ubuntu-latest
1414 strategy :
1515 matrix :
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."
Original file line number Diff line number Diff line change 99 - ' **'
1010
1111jobs :
12- test-unit-job :
12+ test-unit-matrix- job :
1313 runs-on : ubuntu-22.04
1414 strategy :
1515 matrix :
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."
You can’t perform that action at this time.
0 commit comments