Skip to content

Bump the aws-dependencies group with 1 update (#11) #28

Bump the aws-dependencies group with 1 update (#11)

Bump the aws-dependencies group with 1 update (#11) #28

Workflow file for this run

name: lint-test
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
env:
GO_VERSION: 1.20.5
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Run golangci-lint
run: golangci-lint run ./...
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Run tests
run: make testacc