Skip to content

Bump github.com/aws/aws-sdk-go-v2/service/kms from 1.26.1 to 1.27.2 in /go #60

Bump github.com/aws/aws-sdk-go-v2/service/kms from 1.26.1 to 1.27.2 in /go

Bump github.com/aws/aws-sdk-go-v2/service/kms from 1.26.1 to 1.27.2 in /go #60

Workflow file for this run

name: Go build
# Run either when pushing directly to main/master or in a PR targeting main/master
on:
push:
branches:
- master
- main
paths:
- "**.go"
- "go/go.mod"
- "go/go.sum"
- ".github/workflows/go.yml"
pull_request:
branches:
- master
- main
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./go
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21.x"
cache-dependency-path: go/go.sum
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test