Skip to content

Commit c95ef61

Browse files
committed
CI - PHP85
1 parent dbb32fb commit c95ef61

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,25 @@ env:
1212

1313
jobs:
1414
tests:
15-
runs-on: ubuntu-latest
15+
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
1622

17-
name: Tests
23+
name: PHP ${{ matrix.php-version }} tests (${{ matrix.os }})
1824
steps:
1925
- uses: actions/checkout@v4
2026

2127
-
2228
uses: shivammathur/setup-php@v2
2329
with:
24-
php-version: ['8.2', '8.3', '8.4', '8.5']
30+
php-version: ${{ matrix.php-version }}
2531
coverage: none
2632
ini-values: zend.assertions=1
2733

2834
- uses: "ramsey/composer-install@v2"
2935

30-
- run: vendor/bin/phpunit
36+
- run: vendor/bin/phpunit

0 commit comments

Comments
 (0)