From a70c4fe3fb0aab26b948e2cac2d313056d80519e Mon Sep 17 00:00:00 2001 From: Constantin Graf Date: Wed, 18 Sep 2024 22:03:37 +0200 Subject: [PATCH] Add parallel testing to GitHub action phpunit --- .github/workflows/phpunit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index fb8f3f49..5a665be9 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -65,7 +65,7 @@ jobs: php artisan passport:keys - name: "Run PHPUnit" - run: php artisan test --stop-on-failure --coverage-text --coverage-clover=coverage.xml + run: php artisan test --parallel --stop-on-failure --coverage-text --coverage-clover=coverage.xml - name: "Upload coverage reports to Codecov" uses: codecov/codecov-action@v7.0.0