From 300040b354f3e2ef7ab16c0878ab6f7e18d5e42d Mon Sep 17 00:00:00 2001 From: Rassaby Ludovic Date: Tue, 14 Oct 2025 13:10:49 +0400 Subject: [PATCH] Fix GitHub Actions: use 'docker compose' instead of 'docker-compose' --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b907a10..6e4dc4d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,16 +20,16 @@ jobs: - name: 🧪 Run tests with Docker Compose run: | echo "🚀 Démarrage des tests automatisés..." - docker-compose --profile test up --build --abort-on-container-exit test + docker compose --profile test up --build --abort-on-container-exit test - name: 📊 Show test results if: always() run: | echo "📋 Résultats des tests:" - docker-compose --profile test logs test + docker compose --profile test logs test - name: 🧹 Cleanup if: always() run: | - docker-compose --profile test down -v + docker compose --profile test down -v docker system prune -f