Skip to content

Commit

Permalink
Add setup terraform step to integration tests (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
lisguo authored Jan 17, 2025
1 parent cc8f6fd commit fa47d45
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ jobs:
- name: Set KUBECONFIG environment variable
run: echo KUBECONFIG="${{ github.workspace }}/../../../.kube/config" >> $GITHUB_ENV

- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.1.7"

- name: Verify Terraform version
run: terraform --version

Expand Down Expand Up @@ -106,6 +111,11 @@ jobs:
- name: Set KUBECONFIG environment variable
run: echo KUBECONFIG="${{ github.workspace }}/../../../.kube/config" >> $GITHUB_ENV

- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.1.7"

- name: Verify Terraform version
run: terraform --version

Expand Down Expand Up @@ -161,6 +171,11 @@ jobs:

- name: Set KUBECONFIG environment variable
run: echo KUBECONFIG="${{ github.workspace }}/../../../.kube/config" >> $GITHUB_ENV

- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.1.7"

- name: Verify Terraform version
run: terraform --version
Expand Down

0 comments on commit fa47d45

Please sign in to comment.