Skip to content

Commit 01c8869

Browse files
authored
Fix GH actions build (#13)
* Use normal phpunit * Use --no-scripts when installing
1 parent 7589cef commit 01c8869

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
extensions: pdo_sqlite
2828

2929
- name: Install Dependencies
30-
run: composer update
30+
run: composer update --no-scripts
3131

3232
- name: Run phpunit tests
3333
run: |
3434
mkdir -p build/logs
35-
vendor/bin/simple-phpunit --coverage-clover ./build/logs/clover.xml
35+
vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml
3636
- name: Run phpcs
3737
run: composer cs
3838

0 commit comments

Comments
 (0)