This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
Update module github.com/gruntwork-io/terratest to v0.46.7 #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: workflow | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: { go-version: 1.16.5 } | |
- name: Install Terraform | |
uses: hashicorp/setup-terraform@v2 | |
with: { terraform_version: 1.0.0 } | |
- name: Install Taskfile | |
run: curl -sL https://taskfile.dev/install.sh | sh | |
- name: Run tests | |
run: ./bin/task test |