We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ccb997 commit 4b5296fCopy full SHA for 4b5296f
2 files changed
.github/workflows/tests.yml
@@ -9,15 +9,18 @@ on:
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
- name: Tests
+ strategy:
13
+ matrix:
14
+ php: ['8.1', '8.2', '8.3']
15
+ name: PHP ${{ matrix.php }}
16
17
steps:
18
- uses: actions/checkout@v4
19
20
- name: Setup PHP
21
uses: shivammathur/setup-php@v2
22
with:
- php-version: '8.4'
23
+ php-version: ${{ matrix.php }}
24
coverage: none
25
26
- name: Cache Composer dependencies
composer.json
@@ -4,7 +4,7 @@
4
"type": "library",
5
"license": "MIT",
6
"require": {
7
- "php": "^8.4"
+ "php": "^8.1"
8
},
"require-dev": {
"pestphp/pest": "^2.0|^3.0"
0 commit comments