Skip to content

Commit

Permalink
fix non-existing executable "docker-compose"
Browse files Browse the repository at this point in the history
  • Loading branch information
deminy committed Nov 28, 2024
1 parent cf63c7f commit 568b2f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:

- name: Prepare Test Environment
run: |
docker-compose exec -T app php -v
docker-compose exec -T app php --ri swoole
docker-compose exec -T app composer install -n -q --no-progress
docker compose exec -T app php -v
docker compose exec -T app php --ri swoole
docker compose exec -T app composer install -n -q --no-progress
sleep 40s
- name: Run Unit Tests
run: docker-compose exec -T app composer test
run: docker compose exec -T app composer test

0 comments on commit 568b2f6

Please sign in to comment.