We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 721d9b7 + 17b3260 commit 7ace556Copy full SHA for 7ace556
1 file changed
.github/workflows/on_pull_request.yml
@@ -6,15 +6,26 @@ on:
6
- main
7
8
jobs:
9
+ php-versions:
10
+ runs-on: ubuntu-latest
11
+ outputs:
12
+ matrix: ${{ steps.php-versions.outputs.matrix }}
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v6
16
+ - name: Determine supported PHP versions
17
+ id: php-versions
18
+ uses: antfroger/php-version-action@v1
19
+
20
tests:
21
+ needs:
22
+ - php-versions
23
runs-on: ubuntu-latest
24
continue-on-error: false
25
strategy:
26
max-parallel: 3
27
matrix:
- php:
- - 8.3
- - 8.4
28
+ php: ${{ fromJson(needs.php-versions.outputs.matrix) }}
29
composer:
30
- 2
31
name: Test - php:${{ matrix.php }}; composer:${{ matrix.composer }}
0 commit comments