File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 9
9
matrix :
10
10
os : [ubuntu-latest, macos-latest]
11
11
php : ['8.1', '8.2', '8.3']
12
+ pest : ['2.*', '3.*']
12
13
dependency-version : [prefer-lowest, prefer-stable]
13
14
14
- name : PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
15
+ name : PHP ${{ matrix.php }} - PEST ${{ matrix.pest }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
15
16
16
17
steps :
17
18
- name : Checkout
25
26
coverage : xdebug
26
27
27
28
- name : Install PHP dependencies
28
- run : composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
29
+ run : |
30
+ composer require "pestphp/pest:${{ matrix.pest }}" --no-interaction --no-update
31
+ composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
29
32
30
33
- name : Unit Tests
31
34
run : composer test:unit -- --coverage-clover ./coverage.xml
35
38
with :
36
39
token : ${{ secrets.CODECOV_TOKEN }}
37
40
files : ./coverage.xml
38
- verbose : true
41
+ verbose : true
You can’t perform that action at this time.
0 commit comments