Skip to content

Commit 1a1dc6c

Browse files
committed
Test on PHP 8.3
1 parent 9bdbea2 commit 1a1dc6c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
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

0 commit comments

Comments
 (0)