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
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:
parent
2c1c10e402
commit
b6a66358d9
1 changed files with 4 additions and 1 deletions
5
.github/workflows/ci.yaml
vendored
5
.github/workflows/ci.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue