From 96acd4b9621231fd258e4ee2da3d3a8c970a40d8 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 2dc92778..d2724d62 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -60,7 +60,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@v5.4.2