Skip to content

Commit

Permalink
Fix running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mjanser committed Oct 3, 2024
1 parent e8ec709 commit ca28c44
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ jobs:
- name: Normalize composer.json
shell: bash
run: |
docker compose exec app -- composer normalize --dry-run
docker compose exec app composer normalize --dry-run
- name: PHP-CS-Fixer
shell: bash
run: |
docker compose exec app -- composer cs:check
docker compose exec app composer cs:check
- name: PHPStan
shell: bash
run: |
docker compose exec app -- composer phpstan:check
docker compose exec app composer phpstan:check
- name: Rector
shell: bash
run: |
docker compose exec app -- composer rector:check
docker compose exec app composer rector:check
- name: Tests
shell: bash
run: |
docker compose exec app -- composer phpunit:check
docker compose exec app composer phpunit:check
- name: Stop stack
if: always()
shell: bash
Expand Down

0 comments on commit ca28c44

Please sign in to comment.