We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccdafd8 commit a178a63Copy full SHA for a178a63
.github/workflows/php-tests.yml
@@ -14,7 +14,7 @@ jobs:
14
strategy:
15
matrix:
16
operating-system: [ ubuntu-latest ]
17
- php-version: [ '8.0', '8.1', '8.2' ]
+ php-version: [ '8.0', '8.1', '8.2', '8.3' ]
18
19
name: PHP ${{ matrix.php-version }} test on ${{ matrix.operating-system }}
20
@@ -46,10 +46,11 @@ jobs:
46
47
- name: PHPUnit Tests
48
run: |
49
- if [[ ${{ matrix.php-version }} == '8.0' ]]; then
+ if [[ '${{ matrix.php-version }}' == '8.0' ]]; then
50
vendor/bin/phpunit --configuration phpunit-9.6.xml --coverage-clover tests/coverage.xml
51
else
52
vendor/bin/phpunit --coverage-clover tests/coverage.xml
53
+ fi
54
55
- name: Upload coverage reports to Codecov
56
uses: codecov/codecov-action@v3
0 commit comments