We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a1f73e commit 06fe819Copy full SHA for 06fe819
.github/workflows/build.yml
@@ -57,8 +57,11 @@ jobs:
57
- name: Validate database schema
58
run: (cd tests/Application && bin/console doctrine:schema:validate)
59
60
- - name: Run PHPUnit
61
- run: vendor/bin/phpunit --colors=always
+ - name: Run API tests
+ run: vendor/bin/phpunit tests/Api --colors=always
62
+
63
+ - name: Run PHPUnit tests
64
+ run: vendor/bin/phpunit tests/Unit --colors=always
65
66
- name: Run Behat
67
run: vendor/bin/behat --colors --strict -vvv --no-interaction || vendor/bin/behat --colors --strict -vvv --no-interaction --rerun
0 commit comments