Skip to content

chore(deps): update terraform aws to v6 #200

chore(deps): update terraform aws to v6

chore(deps): update terraform aws to v6 #200

Workflow file for this run

name: Build and Test
on:
push:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: eu-west-1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version-file: "go.mod"
cache-dependency-path: "go.sum"
- name: Build and Test
run: make build
- name: Test package
run: make go.test
- name: Test binary
run: make bin.test