Skip to content

feat: unpin old AWS provider #66

feat: unpin old AWS provider

feat: unpin old AWS provider #66

Workflow file for this run

name: terratest
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
AWS_ACCESS_KEY_ID: ${{ secrets.TERRATEST_AWS_ACCESS_KEY_ID }}
AWS_SECRET_KEY: ${{ secrets.TERRATEST_AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ secrets.TERRATEST_AWS_REGION }}
AWS_REGION: ${{ secrets.TERRATEST_AWS_REGION }}
jobs:
terratest:
name: terratest
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
submodules: true
- name: Set up Go (1.16)
uses: actions/setup-go@v2
with:
go-version: 1.16
id: go
- name: Get Go dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Run 'go test -v -timeout 30m'
run: |
cd test
go test -v -timeout 30m