Skip to content

Bump github.com/aws/aws-sdk-go from 1.44.244 to 1.44.312 #265

Bump github.com/aws/aws-sdk-go from 1.44.244 to 1.44.312

Bump github.com/aws/aws-sdk-go from 1.44.244 to 1.44.312 #265

Workflow file for this run

---
name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go ${{ matrix.goVer }}
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Check format
run: make check-fmt
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
- name: Staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
$(go env GOPATH)/bin/staticcheck ./...
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
goVer: ["1.20"]
steps:
- name: Set up Go ${{ matrix.goVer }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.goVer }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run tests
run: make test
- name: Show test coverage
run: make coverage
- name: Check test coverage threshold
uses: vladopajic/go-test-coverage@v2
with:
config: ./.github/testcoverage.yml
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
goVer: ["1.20"]
steps:
- name: Set up Go ${{ matrix.goVer }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.goVer }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: make build