From f3f86e904fe07d3ade24144636a4282a5ddeceed Mon Sep 17 00:00:00 2001 From: Alexandre de Souza Date: Wed, 10 Sep 2025 15:55:23 -0300 Subject: [PATCH] Update test workflow to use the git ssh key --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d91efd090..36ba15297 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,6 +41,8 @@ jobs: run: mix compile --warnings-as-errors - name: Run tests run: mix test + env: + TEST_GIT_SSH_KEY: ${{ secrets.TEST_GIT_SSH_KEY }} - name: Install Node uses: actions/setup-node@v4 with: @@ -105,6 +107,8 @@ jobs: run: mix deps.get - name: Run tests run: mix test + env: + TEST_GIT_SSH_KEY: ${{ secrets.TEST_GIT_SSH_KEY }} - name: Build the app run: bash .github/scripts/app/build_windows.sh