Skip to content

Commit 573ed80

Browse files
authored
ci: install terraform (#2901)
1 parent f4e3324 commit 573ed80

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.github/workflows/acceptance-tests.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
# Checkout should always be before setup-go to ensure caching is working
4848
- name: Checkout
4949
uses: actions/checkout@v4
50+
- name: Install Terraform
51+
uses: hashicorp/setup-terraform@v3
5052
- name: Install Go
5153
uses: actions/setup-go@v5
5254
with:
@@ -75,6 +77,8 @@ jobs:
7577
uses: actions/setup-go@v5
7678
with:
7779
go-version: 1.23.5
80+
- name: Install Terraform
81+
uses: hashicorp/setup-terraform@v3
7882
- name: Run scwconfig tests
7983
run: go test -v ./internal/services/scwconfig -timeout=2m
8084
env:

.github/workflows/nightly.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ jobs:
104104
uses: actions/setup-go@v5
105105
with:
106106
go-version: 1.23.5
107+
- name: Install Terraform
108+
uses: hashicorp/setup-terraform@v3
107109
- name: Run sweepers
108110
run: make sweep
109111
env:

.github/workflows/unit-tests.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
uses: actions/setup-go@v5
1818
with:
1919
go-version: 1.23.5
20+
- name: Install Terraform
21+
uses: hashicorp/setup-terraform@v3
2022
- name: Build binaries
2123
run: make build
2224
- name: Run unit tests

0 commit comments

Comments
 (0)