Skip to content

Commit df4dd5b

Browse files
author
Inbal Tako
committed
Fix phpunit
1 parent 2e4b940 commit df4dd5b

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ jobs:
2727

2828
- uses: actions/checkout@v2
2929
- uses: php-actions/composer@v1
30-
- uses: php-actions/phpunit@v9
31-
with:
32-
configuration: test/phpunit.xml
30+
- uses: nanasess/setup-php@master
31+
run: php test/AgentTest.php && php test/SecureNativeTest.php
3332

3433
- name: Publish to codecov
3534
run: bash <(curl -s https://codecov.io/bash)

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ jobs:
2424

2525
- uses: actions/checkout@v2
2626
- uses: php-actions/composer@v1
27-
- uses: php-actions/phpunit@v9
28-
with:
29-
configuration: test/phpunit.xml
27+
- uses: nanasess/setup-php@master
28+
run: php test/AgentTest.php && php test/SecureNativeTest.php
3029

3130
- name: Publish to codecov
3231
run: bash <(curl -s https://codecov.io/bash)

.github/workflows/publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ jobs:
2121

2222
- uses: actions/checkout@v2
2323
- uses: php-actions/composer@v1
24-
- uses: php-actions/phpunit@v9
25-
with:
26-
configuration: test/phpunit.xml
24+
- uses: nanasess/setup-php@master
25+
run: php test/AgentTest.php && php test/SecureNativeTest.php
2726

2827
- name: Publish to codecov
2928
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)