Skip to content

chore(test): add terratest #3

chore(test): add terratest

chore(test): add terratest #3

Workflow file for this run

on:
pull_request:
branches:
- main
paths:
- "**.tf"
- "test/*.go"
name: terratest
jobs:
terratest:
runs-on: ubuntu-latest
permissions:
contents: "read"
id-token: "write"
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.x"
- uses: "google-github-actions/auth@v2"
with:
project_id: "library-344516"
workload_identity_provider: "projects/270410071403/locations/global/workloadIdentityPools/github/providers/padok-gcp-library"
- name: tfswitch
run: |
wget https://raw.githubusercontent.com/warrensbox/terraform-switcher/release/install.sh
chmod 755 install.sh
./install.sh -b ~/.local/bin v1.2.2 # Last arg is the desired tfswitch version
rm install.sh
tfswitch -b ~/.local/bin/terraform
- name: Test with the Go CLI
run: go test -timeout 30s ./test