Update module sigs.k8s.io/controller-runtime to v0.15.1 #989
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: Build and run tests | |
# This workflow is triggered on pushes to the repository. | |
on: [push, pull_request] | |
jobs: | |
lint: | |
# This job runs on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
check-latest: true | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
# always uses the latest patch version. | |
version: v1.52 | |
args: "--timeout 5m" | |
vulncheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
check-latest: true | |
- name: Install govulncheck | |
run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
- name: Run govulncheck | |
run: govulncheck ./... | |
test: | |
# This job runs on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
check-latest: true | |
- name: Cache Go modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Cache testbin binaries | |
id: cache-testbin | |
uses: actions/cache@v3 | |
with: | |
path: testbin | |
# Use SHA-256 hash of the Makefile file as the key. | |
# Swapping testbinary versions usally requrie to change the Makefile | |
key: ${{ runner.os }}-kubebuilder-${{ hashFiles('Makefile') }} | |
- name: Install Ginkgo CLI | |
run: go install github.com/onsi/ginkgo/v2/[email protected] | |
- name: Run tests and generate coverage | |
run: | | |
ENVTEST_K8S_VERSION=1.25.0 make test | |
- name: Upload coverage results to coveralls | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: coverprofile.out |