Skip to content

Commit 3038aae

Browse files
committed
[RT-5629] Added phpunit github workflow config.
1 parent d51e0f7 commit 3038aae

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/ci-checks.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,15 @@ jobs:
2020
- name: Install dependencies
2121
uses: php-actions/composer@v6
2222
- name: Run PHPStan
23-
run: vendor/bin/phpstan analyse -c phpstan.neon.dist
23+
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

Comments
 (0)