We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef0641 commit accb6feCopy full SHA for accb6fe
.github/workflows/push.yml
@@ -56,6 +56,10 @@ jobs:
56
strategy:
57
fail-fast: false
58
matrix:
59
+ dependencies:
60
+ - highest
61
+ - locked
62
+ - lowest
63
operating-system:
64
- ubuntu-latest
65
- windows-latest
@@ -106,10 +110,11 @@ jobs:
106
110
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
107
111
run: phive --no-progress install --copy --trust-gpg-keys ${{ env.phiveGPGKeys }} phpunit:^8.5
108
112
109
- - name: Install Composer dependencies & cache dependencies
113
+ - name: Install Composer ${{ matrix.dependencies }} dependencies & cache dependencies
114
uses: "ramsey/composer-install@v2"
115
with:
116
composer-options: --optimize-autoloader
117
+ dependency-versions: ${{ matrix.dependencies }}
118
119
- name: Run PHPUnit
120
run: php tools/phpunit
0 commit comments