diff options
Diffstat (limited to '.github/workflows/coverage.yml')
| -rw-r--r-- | .github/workflows/coverage.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index daf2733..3be18db 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -18,8 +18,10 @@ jobs: - name: Set-up Composer uses: php-actions/composer@v6 - - name: Give all permissions to tests/ directory - run: chmod -R 0777 tests/ + - name: Set up logs dir + run: | + mkdir logs/ + chmod -R 0777 logs/ - name: Run tests and collect coverage run: ./vendor/bin/phpunit tests --coverage-clover coverage.xml tests |
