Skip to content

Commit f4b29b2

Browse files
author
Gareth Ellis
committed
Attempting matrix build
1 parent a198a24 commit f4b29b2

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/ci.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@ name: CI
33
on: [push, pull_request]
44

55
jobs:
6-
build:
7-
runs-on: ubuntu-latest
8-
6+
run:
7+
runs-on: 'ubuntu-latest'
8+
strategy:
9+
matrix:
10+
php-versions: ['8.1', '8.2', '8.3']
11+
phpunit-versions: ['latest']
912
steps:
10-
- uses: actions/checkout@v1
11-
13+
- name: Setup PHP
14+
uses: shivammathur/setup-php@v2
15+
with:
16+
php-version: ${{ matrix.php-versions }}
17+
extensions: intl
18+
tools: phpunit:${{ matrix.phpunit-versions }}
1219
- name: Composer install
1320
run: composer install --prefer-dist
1421

0 commit comments

Comments
 (0)