Skip to content

Commit d014002

Browse files
committed
wip it
1 parent 5336bd3 commit d014002

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@ on: [push]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
8+
9+
strategy:
10+
fail-fast: true
11+
matrix:
12+
php: [ 8.1, 8.2, 8.3 ]
13+
14+
name: PHP ${{ matrix.php }}
815

916
steps:
1017
- uses: actions/checkout@v4
1118

1219
- name: Setup PHP
1320
uses: shivammathur/setup-php@v2
1421
with:
15-
php-version: '8.2'
22+
php-version: ${{ matrix.php }}
1623
extensions: zip, sqlite3
1724
coverage: xdebug
1825

0 commit comments

Comments
 (0)