Keep default path for coverage output in CI

Apparently php-coveralls can't handle non-default paths...
This commit is contained in:
Christopher C. Wells 2021-04-02 22:25:56 -07:00
parent 2b192b7c98
commit 538069ca43
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ jobs:
php -r "file_exists('.env') || copy('.env.example', '.env');"
php artisan key:generate
- name: Run tests
run: vendor/bin/paratest --coverage-clover build/cov/clover.xml
run: vendor/bin/paratest --coverage-clover build/logs/clover.xml
- name: Upload coverage results to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: vendor/bin/php-coveralls --coverage_clover=build/cov/clover.xml -v
run: vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v