File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
tests :
9
9
runs-on : ubuntu-latest
10
- continue-on-error : ${{ matrix.experimental }}
11
10
strategy :
12
11
fail-fast : true
13
12
matrix :
14
13
php : [7.3, 7.4, 8.0, 8.1]
15
- stability : [prefer-lowest, prefer-stable]
16
- experimental : [false]
14
+ dependencies :
15
+ - lowest
16
+ - highest
17
17
18
- name : Tests on PHP ${{ matrix.php }} - ${{ matrix.stability }}
18
+ name : Tests on PHP ${{ matrix.php }} - ${{ matrix.dependencies }}
19
19
20
20
steps :
21
21
- name : Checkout code
28
28
tools : composer:v2
29
29
coverage : none
30
30
31
- - name : Install dependencies
32
- run : composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
31
+ - uses : " ramsey/composer-install@v1"
32
+ with :
33
+ dependency-versions : " ${{ matrix.dependencies }}"
33
34
34
35
- name : Execute tests
35
36
run : vendor/bin/phpunit --verbose
You can’t perform that action at this time.
0 commit comments