From b4c00668fdd080acc691d0b98e111dc0c341b979 Mon Sep 17 00:00:00 2001 From: Steffen Deusch Date: Wed, 11 Dec 2024 14:45:11 +0100 Subject: [PATCH] mix deps.get for installer --- .github/workflows/ci.yml | 1 + integration_test/test.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c11117b32a..07636bde02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,7 @@ jobs: - name: Run installer test run: | cd installer + mix deps.get mix test if: ${{ matrix.installer }} diff --git a/integration_test/test.sh b/integration_test/test.sh index a2cdb03528..ccddbf89e6 100755 --- a/integration_test/test.sh +++ b/integration_test/test.sh @@ -14,6 +14,7 @@ socat TCP-LISTEN:1433,fork TCP-CONNECT:mssql:1433& # Run installer tests echo "Running installer tests" cd installer +mix deps.get mix test echo "Running integration tests"