Skip to content

Allow a KMS Action to specify keys in the Resources of a policy #444

Allow a KMS Action to specify keys in the Resources of a policy

Allow a KMS Action to specify keys in the Resources of a policy #444

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Build Go ${{ matrix.go-version }}
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.22.x]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: make test