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.
2 parents aa8e1ca + 4509035 commit 2ad2626Copy full SHA for 2ad2626
.github/workflows/phptest.yml
@@ -10,7 +10,7 @@ jobs:
10
11
strategy:
12
matrix:
13
- php-versions: [7.4, 8.0.6, 8.1]
+ php-versions: [7.4, 8.0.6, 8.1, 8.2]
14
15
steps:
16
- name: Checkout
@@ -30,10 +30,14 @@ jobs:
30
31
- name: PHPUNIT Tests
32
run: |
33
- ./vendor/bin/phpunit
+ ./vendor/bin/phpunit --coverage-clover=coverage.xml
34
+
35
- name: PHPLint
36
37
./vendor/bin/phpcs --standard=phpcs.xml --extensions=php --ignore=tests/migrations config/ src/
38
-
39
+ - name: Upload to codecov
40
+ uses: codecov/codecov-action@v3
41
+ with:
42
+ name: PHP ${{ matrix.php-versions }}
43
+ files: coverage.xml
0 commit comments