We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a198a24 commit f4b29b2Copy full SHA for f4b29b2
.github/workflows/ci.yml
@@ -3,12 +3,19 @@ name: CI
3
on: [push, pull_request]
4
5
jobs:
6
- build:
7
- runs-on: ubuntu-latest
8
-
+ run:
+ runs-on: 'ubuntu-latest'
+ strategy:
9
+ matrix:
10
+ php-versions: ['8.1', '8.2', '8.3']
11
+ phpunit-versions: ['latest']
12
steps:
- - uses: actions/checkout@v1
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 }}
19
- name: Composer install
20
run: composer install --prefer-dist
21
0 commit comments