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 6f1b4de commit e5c8e9cCopy full SHA for e5c8e9c
.github/workflows/test-application.yaml
@@ -15,7 +15,6 @@ jobs:
15
runs-on: ubuntu-latest
16
17
env:
18
- SYMFONY_PHPUNIT_VERSION: 8
19
SYMFONY_DEPRECATIONS_HELPER: ${{ matrix.symfony-deprecation-helper }}
20
21
strategy:
@@ -26,6 +25,7 @@ jobs:
26
25
composer-flags: '--prefer-lowest'
27
symfony-version: '^3.4'
28
symfony-deprecation-helper: 'weak'
+ phpunit-version: 7.5
29
30
- php-version: '7.2'
31
- php-version: '7.3'
@@ -57,3 +57,10 @@ jobs:
57
58
- name: Execute test cases
59
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