We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6372130 commit ea826dbCopy full SHA for ea826db
.github/workflows/build.yml
@@ -2,21 +2,23 @@ name: Build
2
on: [push, pull_request]
3
4
jobs:
5
- build-test:
+ run:
6
runs-on: ubuntu-latest
7
+ strategy:
8
+ matrix:
9
+ php-versions: ['8.1', '8.2', '8.3', '8.4']
10
+ name: PHPUnit @ PHP ${{ matrix.php-versions }}
11
12
steps:
13
- uses: actions/checkout@v4
14
- uses: php-actions/composer@v6
-
- - name: PHPUnit Tests PHP 8.1
- uses: php-actions/phpunit@master
15
+ - uses: php-actions/phpunit@master
16
with:
17
bootstrap: vendor/autoload.php
18
configuration: phpunit.xml
19
args: --coverage-text
20
php_extensions: xdebug bcmath
- php_version: 8.1
21
+ php_version: ${{ matrix.php-versions }}
22
version: 9
23
env:
- XDEBUG_MODE: coverage
24
+ XDEBUG_MODE: coverage
0 commit comments