feat(deps): bump k8s.io/kms from 0.31.4 to 0.32.0 #465
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: Test and coverage | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.6' | |
cache: false | |
- run: go generate -tags tools tools/tools.go | |
- name: go get | |
run: go get ./... | |
- name: Run coverage | |
run: make test | |
env: | |
# https://github.com/testcontainers/testcontainers-go/issues/1782 | |
TESTCONTAINERS_RYUK_DISABLED: true | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5.1.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: FalcoSuessgott/vault-kubernetes-kms |