Skip to content

Commit e5c8e9c

Browse files
Simplify composer install
1 parent 6f1b4de commit e5c8e9c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test-application.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
env:
18-
SYMFONY_PHPUNIT_VERSION: 8
1918
SYMFONY_DEPRECATIONS_HELPER: ${{ matrix.symfony-deprecation-helper }}
2019

2120
strategy:
@@ -26,6 +25,7 @@ jobs:
2625
composer-flags: '--prefer-lowest'
2726
symfony-version: '^3.4'
2827
symfony-deprecation-helper: 'weak'
28+
phpunit-version: 7.5
2929

3030
- php-version: '7.2'
3131
- php-version: '7.3'
@@ -57,3 +57,10 @@ jobs:
5757

5858
- name: Execute test cases
5959
run: make test
60+
61+
- name: Execute test cases
62+
run: |
63+
if [[ $SYMFONY_PHPUNIT_VERSION == '' ]]; then unset SYMFONY_PHPUNIT_VERSION; fi;
64+
vendor/bin/simple-phpunit ${{ matrix.phpunit-flags }}
65+
env:
66+
SYMFONY_PHPUNIT_VERSION: ${{ matrix.phpunit-version }}

0 commit comments

Comments
 (0)