File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,16 @@ jobs:
2525 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2626 - uses : actions/checkout@v2
2727
28- - name : build, test and check
28+ - name : build
2929 run : |
3030 cd tests/Resources/docker/
3131 bin/build.sh
3232 bin/setup_fixtures.sh
33- docker-compose run --no-deps --rm php php vendor/bin/phpunit --debug --colors=never --coverage-text=php://stdout --coverage-html=logs/coverage
34- bin/php php ../../../vendor/bin/security-checker security:check ../../../composer.lock.
33+
34+
35+ - name : test
36+ run : docker-compose run --no-deps --rm php php vendor/bin/phpunit --debug --colors=never --coverage-text=php://stdout --coverage-html=logs/coverage
37+
38+
39+ - name : security check
40+ run : bin/php php ../../../vendor/bin/security-checker security:check ../../../composer.lock
You can’t perform that action at this time.
0 commit comments