File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 strategy :
77 matrix :
88 operating-system : [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
9- php-versions : [ '8.1', '8.2' ]
9+ php-versions : [ '8.1', '8.2', '8.3' ]
1010 steps :
1111 - name : Checkout repo
1212 uses : actions/checkout@v2
@@ -38,17 +38,17 @@ jobs:
3838 run : composer install --no-progress --prefer-dist --optimize-autoloader
3939
4040 - name : Test with PHPUnit
41- if : matrix.php-versions != '8.2 ' || matrix.operating-system != 'ubuntu-latest'
41+ if : matrix.php-versions != '8.3 ' || matrix.operating-system != 'ubuntu-latest'
4242 env :
4343 XDEBUG_MODE : coverage
4444 run : vendor/bin/phpunit --testdox -- tests
4545
4646 - name : Test with PHPUnit (coverage)
47- if : matrix.php-versions == '8.2 ' && matrix.operating-system == 'ubuntu-latest'
47+ if : matrix.php-versions == '8.3 ' && matrix.operating-system == 'ubuntu-latest'
4848 env :
4949 XDEBUG_MODE : coverage
5050 run : vendor/bin/phpunit --testdox --coverage-clover coverage.xml -- tests
5151
5252 - name : Codecov
53- if : matrix.php-versions == '8.2 ' && matrix.operating-system == 'ubuntu-latest'
53+ if : matrix.php-versions == '8.3 ' && matrix.operating-system == 'ubuntu-latest'
5454 uses : codecov/codecov-action@v2
You can’t perform that action at this time.
0 commit comments