1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-08-02 21:47:23 +02:00

build: run all tests (incl. very slow)

This commit is contained in:
Ne-Lexa
2021-02-23 20:07:37 +03:00
parent 8f43a3a75f
commit 28d33ab687

View File

@@ -102,12 +102,12 @@ jobs:
-
name: Run tests with phpunit
if: env.PHPUNIT_COVERAGE == 0
run: vendor/bin/phpunit -v
run: vendor/bin/phpunit -v --testsuite "all_tests" --group small,medium,large
-
name: Run tests with phpunit and coverage
if: env.PHPUNIT_COVERAGE == 1
run: vendor/bin/phpunit -v --coverage-clover=coverage.clover
run: vendor/bin/phpunit -v --coverage-clover=coverage.clover --testsuite "all_tests" --group small,medium,large
-
name: Static analysis