mirror of https://github.com/kcal-app/kcal.git
Keep default path for coverage output in CI
Apparently php-coveralls can't handle non-default paths...
This commit is contained in:
parent
2b192b7c98
commit
538069ca43
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue