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 c4c274b commit 74c2cddCopy full SHA for 74c2cdd
.github/workflows/test.yml
@@ -37,12 +37,11 @@ jobs:
37
strategy:
38
matrix:
39
php-version: ${{ fromJSON(needs.php-matrix.outputs.versions) }}
40
+ dependency-versions: [highest, lowest]
41
coverage: ['none']
- exclude:
42
- - php-version: ${{ needs.php-matrix.outputs.highest }}
43
- coverage: 'none'
44
include:
45
- php-version: ${{ needs.php-matrix.outputs.highest }}
+ dependency-versions: locked
46
coverage: xdebug
47
runs-on: ubuntu-latest
48
steps:
@@ -54,6 +53,8 @@ jobs:
54
53
coverage: ${{ matrix.coverage }}
55
56
- uses: ramsey/composer-install@v3
+ with:
57
+ dependency-versions: ${{ matrix.dependency-versions }}
58
59
- run: composer pest:unit -- ${COVERAGE} --ci
60
env:
0 commit comments