fix: add missing param to acceptance testing
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 8s
CI Workflow / Prepare GO cache (pull_request) Successful in 5m8s
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 12m25s
CI Workflow / CI run build and linting (pull_request) Successful in 13m12s
CI Workflow / Code coverage report (pull_request) Successful in 17s
CI Workflow / CI run tests (pull_request) Failing after 17m22s

This commit is contained in:
Marcel S. Henselin 2026-03-09 14:57:34 +01:00
parent 2c1c10e402
commit b6a66358d9

View file

@ -224,7 +224,10 @@ jobs:
env:
TF_ACC: "1"
if: ${{ github.event_name == 'pull_request' }}
run: make test-acceptance-tf
run: |
TF_ACC_SERVICE_ACCOUNT_FILE=~/.service_account.json
export TF_ACC_SERVICE_ACCOUNT_FILE
make test-acceptance-tf
- name: Check coverage threshold
shell: bash