There was an error while loading. Please reload this page.
1 parent d51e0f7 commit 3038aaeCopy full SHA for 3038aae
1 file changed
.github/workflows/ci-checks.yml
@@ -20,4 +20,15 @@ jobs:
20
- name: Install dependencies
21
uses: php-actions/composer@v6
22
- name: Run PHPStan
23
- run: vendor/bin/phpstan analyse -c phpstan.neon.dist
+ run: vendor/bin/phpstan analyse -c phpstan.neon.dist
24
+ run-php-unit-tests:
25
+ needs: [ run-phpcs, run-php-stan ]
26
+ if: always()
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - name: Checkout code
30
+ uses: actions/checkout@v3
31
+ - name: Install dependencies
32
+ uses: php-actions/composer@v6
33
+ - name: Execute tests
34
+ run: vendor/bin/phpunit -c phpunit.xml --colors=always --verbose --testdox
0 commit comments