File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 matrix :
2121 php-version : ["8.2", "8.5"]
2222
23- name : Integration PHP ${{ matrix.php-version }}
23+ name : PHP ${{ matrix.php-version }}
2424
2525 steps :
2626 - name : Checkout repository
8585
8686 - name : Run integration tests
8787 run : composer test:integration
88+
89+ integration-test :
90+ runs-on : ubuntu-latest
91+ needs : integration
92+
93+ name : Integration Test
94+
95+ steps :
96+ - name : Integration test matrix passed
97+ run : echo "All integration test matrix jobs passed."
Original file line number Diff line number Diff line change 1414 matrix :
1515 php-version : ["8.2", "8.5"]
1616
17- name : Unit PHP ${{ matrix.php-version }}
17+ name : PHP ${{ matrix.php-version }}
1818
1919 steps :
2020 - name : Checkout repository
3131 run : composer install --prefer-dist --no-progress --no-interaction
3232
3333 - name : Run unit tests
34- run : composer test:unit
34+ run : composer test:unit
35+
36+ unit-test :
37+ runs-on : ubuntu-latest
38+ needs : unit
39+
40+ name : Unit Test
41+
42+ steps :
43+ - name : Unit test matrix passed
44+ run : echo "All unit test matrix jobs passed."
You can’t perform that action at this time.
0 commit comments