Skip to content

build(deps): bump sigs.k8s.io/controller-runtime from 0.22.1 to 0.22.3 #845

build(deps): bump sigs.k8s.io/controller-runtime from 0.22.1 to 0.22.3

build(deps): bump sigs.k8s.io/controller-runtime from 0.22.1 to 0.22.3 #845

Workflow file for this run

---
name: lint and test
on:
push:
pull_request:
jobs:
lint-go:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v6
with:
go-version: '1.24'
- uses: actions/checkout@v5
- uses: golangci/golangci-lint-action@v8
with:
args: --timeout 5m
lint-helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Helm lint
shell: bash
run: |
helm lint ./helm/kubenurse/
test-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: '1.24'
- name: Run unit tests
run: go test -race -covermode atomic -coverprofile=profile.cov ./...
- name: Send coverage report
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go install github.com/mattn/goveralls@v0.0.12
goveralls -coverprofile=profile.cov -service=github