Skip to content

Commit 1d00b42

Browse files
committed
Removed usage of php-actions/composer in Github Action
1 parent 1783e6f commit 1d00b42

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,18 @@ jobs:
3737
stack-version: 7.x-SNAPSHOT
3838

3939
- name: Install dependencies
40-
uses: php-actions/composer@v2
40+
run: |
41+
composer install --prefer-dist
4142
4243
- name: Unit tests
4344
run: |
44-
vendor/bin/phpunit --configure phpunit.xml.dist
45+
vendor/bin/phpunit -c phpunit.xml.dist
4546
env:
4647
TEST_SUITE: oss
4748

4849
- name: Integration tests
4950
run: |
50-
vendor/bin/phpunit --configure phpunit-integration-tests.xml
51+
vendor/bin/phpunit -c phpunit-integration-tests.xml
5152
env:
5253
TEST_SUITE: oss
5354

0 commit comments

Comments
 (0)