Bump github.com/aws/aws-sdk-go from 1.44.300 to 1.44.301 #700
Workflow file for this run
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: Push Workflow | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
skip-go-installation: true | |
- name: Prepare test environment | |
run: | | |
docker-compose up -d | |
- uses: hashicorp/setup-terraform@v2 | |
- name: Terraform init | |
id: init | |
run: terraform init | |
- name: Terraform plan | |
id: plan | |
run: terraform plan -no-color | |
continue-on-error: true | |
- name: Terraform apply | |
run: terraform apply -auto-approve | |
- name: Run test suite | |
run: go test ./... |