Skip to content

Bump the aws-sdk-go-v2 group across 1 directory with 5 updates #346

Bump the aws-sdk-go-v2 group across 1 directory with 5 updates

Bump the aws-sdk-go-v2 group across 1 directory with 5 updates #346

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go:
- "1.22"
- "1.23"
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
go-version-file: ./go.mod
cache: true
- name: Build & Test
run: |
go mod download
make download-assets
go test -race -v ./...
env:
TZ: Asia/Tokyo # for time.Local
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}