diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41ac7541..0d6ee0f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,8 +57,11 @@ jobs: - name: Validate database schema run: (cd tests/Application && bin/console doctrine:schema:validate) - - name: Run PHPUnit - run: vendor/bin/phpunit --colors=always + - name: Run API tests + run: vendor/bin/phpunit tests/Api --colors=always + + - name: Run PHPUnit tests + run: vendor/bin/phpunit tests/Unit --colors=always - name: Run Behat run: vendor/bin/behat --colors --strict -vvv --no-interaction || vendor/bin/behat --colors --strict -vvv --no-interaction --rerun