From eca5e890df5127970a39559210d959fcc57de0c1 Mon Sep 17 00:00:00 2001 From: HumzahJavid <25638011+HumzahJavid@users.noreply.github.com> Date: Thu, 29 Aug 2024 11:35:57 +0100 Subject: [PATCH] Rename Dockerfile and use docker compose actions --- .github/workflows/tests.yml | 8 ++++---- container/{rundetection.D => Dockerfile} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename container/{rundetection.D => Dockerfile} (100%) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c5b5721d..8c0e5a11 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,10 +58,10 @@ jobs: with: repository: fiaisis/fia-api - - name: Start e2e docker compose environment - run: | - cd test - docker compose up -d --build + - name: Run docker-compose + uses: hoverkraft-tech/compose-action@v2.0.1 + with: + compose-file: 'test/docker-compose.yml' - name: Run e2e test run: pytest -l -v --random-order --random-order-bucket=global test/test_e2e.py diff --git a/container/rundetection.D b/container/Dockerfile similarity index 100% rename from container/rundetection.D rename to container/Dockerfile