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 1783e6f commit 1d00b42Copy full SHA for 1d00b42
.github/workflows/test.yml
@@ -37,17 +37,18 @@ jobs:
37
stack-version: 7.x-SNAPSHOT
38
39
- name: Install dependencies
40
- uses: php-actions/composer@v2
+ run: |
41
+ composer install --prefer-dist
42
43
- name: Unit tests
44
run: |
- vendor/bin/phpunit --configure phpunit.xml.dist
45
+ vendor/bin/phpunit -c phpunit.xml.dist
46
env:
47
TEST_SUITE: oss
48
49
- name: Integration tests
50
- vendor/bin/phpunit --configure phpunit-integration-tests.xml
51
+ vendor/bin/phpunit -c phpunit-integration-tests.xml
52
53
54
0 commit comments