From d951dab630a9b6e20540ee50e239722a0d2d7ed7 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Mon, 2 Mar 2026 16:12:31 +0100 Subject: [PATCH] fix: fix some tests --- .github/workflows/ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 55d310e9..8cc8c1c5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -132,14 +132,17 @@ jobs: - name: Create service account json file if: ${{ github.event_name == 'pull_request' }} run: | - echo "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON }}" >~/service_account.json + echo "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON }}" >~/.service_account.json - name: Run go mod tidy if: ${{ github.event_name == 'pull_request' }} run: go mod tidy - name: Testing - run: make test + run: | + TF_ACC_SERVICE_ACCOUNT_FILE=~/.service_account.json + export TF_ACC_SERVICE_ACCOUNT_FILE + make test - name: Acceptance Testing env: