File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,20 @@ jobs:
18
18
run : composer install --prefer-dist --no-progress --no-suggest
19
19
20
20
- name : Check src with php-cs-Fixer
21
- run : vendor/bin/php-cs-fixer fix --config . /.php_cs.dist --diff --diff-format udiff --dry-run
21
+ run : vendor/bin/php-cs-fixer fix --config $GITHUB_WORKSPACE /.php_cs.dist --diff --diff-format udiff --dry-run
22
22
23
23
- name : Psalm Static Analysis
24
- run : vendor/bin/psalm -c psalm.xml
24
+ run : vendor/bin/psalm -c $GITHUB_WORKSPACE/ psalm.xml
25
25
if : always()
26
26
27
27
- name : Unit Tests
28
- run : vendor/bin/simple-phpunit -c $GITHUB_WORKSPACE/phpunit.xml.dist
28
+ run : vendor/bin/simple-phpunit -c $GITHUB_WORKSPACE/phpunit.xml.dist --testsuite unit
29
+ if : always()
30
+
31
+ - name : Functional Tests
32
+ run : vendor/bin/simple-phpunit -c $GITHUB_WORKSPACE/phpunit.xml.dist --testsuite functional
33
+ if : always()
34
+
35
+ - name : Integration Tests
36
+ run : vendor/bin/simple-phpunit -c $GITHUB_WORKSPACE/phpunit.xml.dist --testsuite integration
29
37
if : always()
Original file line number Diff line number Diff line change 25
25
<directory >./tests/FunctionalTests</directory >
26
26
</testsuite >
27
27
<testsuite name =" integration" >
28
- <directory >./tests/IntegratonTests </directory >
28
+ <directory >./tests/IntegrationTests </directory >
29
29
</testsuite >
30
30
</testsuites >
31
31
You can’t perform that action at this time.
0 commit comments