build(deps): bump github.com/aws/aws-sdk-go from 1.53.0 to 1.53.14 in /runtimes/cloudformation #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: presubmit | |
on: | |
pull_request: | |
branches: [ dev ] | |
env: | |
GO_VERSION: 1.22.x | |
jobs: | |
test-pkg-lib: | |
name: Test pkg lib | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Test | |
run: | | |
cd pkg | |
go test -v ./... | |
test-cfn-runtime: | |
name: Test CloudFormation Runtime | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Test | |
run: | | |
make -C runtimes/cloudformation test | |
build-cfn-runtime: | |
name: Build CloudFormation runtime | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Build agent-kilt handler | |
run: | | |
make -C runtimes/cloudformation clean cmd/handler/handler |