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 f66b541 commit b50fe35Copy full SHA for b50fe35
.github/workflows/tests.yml
@@ -4,6 +4,8 @@ on:
4
branches:
5
- master
6
pull_request:
7
+ branches:
8
+ - master
9
10
jobs:
11
build:
@@ -28,11 +30,12 @@ jobs:
28
30
with:
29
31
php-version: ${{ matrix.php }}
32
- - name: Install symfony/flex
- run: composer global require --no-progress --no-scripts --no-plugins symfony/flex
33
-
34
- - name: Composer update on php ${{ matrix.php }} and symfony ${{ matrix.sf_version }}
35
- run: export SYMFONY_REQUIRE=${{ matrix.sf_version }} composer update
+ - name: Install dependencies
+ uses: php-actions/composer@v2
+ with:
36
+ php_version: ${{ matrix.php }}
37
+ env:
38
+ SYMFONY_REQUIRE: ${{ matrix.sf_version }}
39
40
- uses: php-actions/phpunit@v3
41
0 commit comments