From 027edfcb14ee967462d90587c8e140af56626eda Mon Sep 17 00:00:00 2001 From: Calum Pinder Date: Fri, 31 May 2024 06:51:01 +0100 Subject: [PATCH] Use test env file for running tests in docker --- .github/workflows/ci-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 64e9707..b3f06fa 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -11,4 +11,4 @@ jobs: - name: Build test Docker image run: docker build --target test --tag backend:test ./backend - name: Run tests - run: docker run --env-file backend/.env backend:test + run: docker run --env-file backend/.env.test backend:test