Skip to content

fix(deps): update module github.com/aws/aws-sdk-go-v2/config to v1.18… #256

fix(deps): update module github.com/aws/aws-sdk-go-v2/config to v1.18…

fix(deps): update module github.com/aws/aws-sdk-go-v2/config to v1.18… #256

Workflow file for this run

name: Build and test code
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19.x
- name: Check out code
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: "--timeout 5m"
- name: Build
run: go build -mod=readonly ./cmd/atlantis-drift-detection/main.go
- name: Verify
run: go mod verify
- name: Test
run: go test -v ./...
- name: Docker build
run: docker build -t atlantis-drift-detection .