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 dbb32fb commit c95ef61Copy full SHA for c95ef61
.github/workflows/tests.yaml
@@ -12,19 +12,25 @@ env:
12
13
jobs:
14
tests:
15
- runs-on: ubuntu-latest
+ strategy:
16
+ matrix:
17
+ php-version: ['8.2', '8.3', '8.4', '8.5']
18
+ os: [ubuntu-latest]
19
+
20
+ runs-on: ${{ matrix.os }}
21
+ timeout-minutes: 3
22
- name: Tests
23
+ name: PHP ${{ matrix.php-version }} tests (${{ matrix.os }})
24
steps:
25
- uses: actions/checkout@v4
26
27
-
28
uses: shivammathur/setup-php@v2
29
with:
- php-version: ['8.2', '8.3', '8.4', '8.5']
30
+ php-version: ${{ matrix.php-version }}
31
coverage: none
32
ini-values: zend.assertions=1
33
34
- uses: "ramsey/composer-install@v2"
35
- - run: vendor/bin/phpunit
36
+ - run: vendor/bin/phpunit
0 commit comments