Skip to content

Commit 6becba4

Browse files
authored
Update github workflows
1 parent 8490eb2 commit 6becba4

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)