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.
2 parents 93d1bb8 + 49b21a0 commit c82cea3Copy full SHA for c82cea3
.github/workflows/run-tests-with-coverage.yml
@@ -9,10 +9,13 @@ on:
9
jobs:
10
tests-with-coverage:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ php-version: [ "8.3", "8.4" ]
15
steps:
16
- uses: shivammathur/setup-php@v2
17
with:
- php-version: '8.3'
18
+ php-version: ${{ matrix.php-version }}
19
- uses: actions/checkout@v3
20
- name: Install Dependencies
21
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
0 commit comments