We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1285ab5 commit 21efcadCopy full SHA for 21efcad
1 file changed
.github/workflows/tests.yml
@@ -20,4 +20,9 @@ jobs:
20
uses: actions/checkout@v4
21
22
- name: Run tests
23
- run: PHP_VERSION=${{ matrix.php }} docker compose run --rm tests composer test
+ 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