Skip to content

Bump github.com/aws/aws-sdk-go from 1.44.307 to 1.44.313 #1549

Bump github.com/aws/aws-sdk-go from 1.44.307 to 1.44.313

Bump github.com/aws/aws-sdk-go from 1.44.307 to 1.44.313 #1549

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.20
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go mod download
- name: Build
run: make build
- name: Test
run: make test
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/[email protected]
with:
args: --timeout=3m
verify-example-configs:
name: verify
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.20
- uses: actions/checkout@v3
- name: Verify example configs
run: find ./examples -name "*.yml" -print0 | xargs -0 -I % go run ./cmd/yace verify-config -config.file %