We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee9f1b commit ac6b959Copy full SHA for ac6b959
.github/workflows/php.yml
@@ -10,14 +10,16 @@ jobs:
10
runs-on: ubuntu-latest
11
strategy:
12
fail-fast: false
13
+ matrix:
14
+ php: [ '8.2', '8.3' ]
15
16
steps:
17
- uses: actions/checkout@v4
18
19
- name: Setup PHP
20
uses: shivammathur/setup-php@2.31.1
21
with:
- php-version: '8.1'
22
+ php-version: ${{ matrix.php }}
23
tools: composer
24
25
- name: Validate composer.json and composer.lock
@@ -41,7 +43,7 @@ jobs:
41
43
42
44
45
matrix:
- php: ['8.0', '8.1']
46
+ php: ['8.2', '8.3']
47
48
49
0 commit comments