Run CI tests with artisan (instead of direct paratest)

This commit is contained in:
Christopher C. Wells 2021-11-10 16:09:44 -08:00
parent 3ee4d08eba
commit 256352d9d6
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ jobs:
php -r "file_exists('.env') || copy('.env.ci', '.env');" php -r "file_exists('.env') || copy('.env.ci', '.env');"
php artisan key:generate php artisan key:generate
- name: Run tests - name: Run tests
run: vendor/bin/paratest --coverage-clover build/logs/clover.xml run: php artisan test --parallel --recreate-databases --coverage-clover build/logs/clover.xml
- name: Upload coverage results to Coveralls - name: Upload coverage results to Coveralls
env: env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}