Skip to content

Commit d026bf4

Browse files
committed
added custom php command instead of action
1 parent 37703b7 commit d026bf4

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/integration-test-3.5.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,5 @@ jobs:
3838
uses: juliangruber/sleep-action@v1
3939
with:
4040
time: 60s
41-
- uses: php-actions/phpunit@v3
42-
with:
43-
configuration: phpunit.xml.dist
44-
php_version: 7.4
45-
bootstrap: vendor/autoload.php
46-
args: --testsuite "Integration"
41+
- name: Run unit tests
42+
run: php vendor/bin/phpunit --testsuite Integration

.github/workflows/integration-test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,5 @@ jobs:
4545
progress: yes
4646
php_version: 7.4
4747
version: 2
48-
- uses: php-actions/phpunit@v3
49-
with:
50-
configuration: phpunit.xml.dist
51-
php_version: 7.4
52-
bootstrap: vendor/autoload.php
53-
args: --testsuite "Integration"
48+
- name: Run unit tests
49+
run: php vendor/bin/phpunit --testsuite Integration

0 commit comments

Comments
 (0)