Skip to content

Commit 21efcad

Browse files
committed
Fix test workflow
1 parent 1285ab5 commit 21efcad

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,9 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Run tests
23-
run: PHP_VERSION=${{ matrix.php }} docker compose run --rm tests composer test
23+
run: |
24+
PHP_VERSION=${{ matrix.php }} docker compose run --rm tests sh -c "
25+
git config --global --add safe.directory /app &&
26+
composer install --no-interaction &&
27+
composer test
28+
"

0 commit comments

Comments
 (0)