Skip to content

Commit

Permalink
fix: Fix workflows so they stop failing when starting Docker Compose env
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse committed Sep 13, 2024
1 parent a6e031b commit 5c5ade8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,17 @@ jobs:
run: composer install --no-interaction --prefer-dist
- name: Start stack
run: |
docker-compose up -d
docker compose up -d
sleep 10
docker ps -a
env:
PHP_VERSION: ${{ matrix.php }}
- name: Tests with Redis
run: docker-compose exec -T phpunit env ADAPTER=redis vendor/bin/phpunit --testsuite=functionnal
run: docker compose exec -T phpunit env ADAPTER=redis vendor/bin/phpunit --testsuite=functionnal
env:
PHP_VERSION: ${{ matrix.php }}
- name: Tests with APCU
run: docker-compose exec -T phpunit env ADAPTER=apcu vendor/bin/phpunit --testsuite=functionnal
run: docker compose exec -T phpunit env ADAPTER=apcu vendor/bin/phpunit --testsuite=functionnal
env:
PHP_VERSION: ${{ matrix.php }}
code_quality:
Expand Down

0 comments on commit 5c5ade8

Please sign in to comment.