Skip to content

chore(deps): update kubernetes packages (minor) #1001

chore(deps): update kubernetes packages (minor)

chore(deps): update kubernetes packages (minor) #1001

Workflow file for this run

name: "Unit tests"
on:
pull_request:
paths:
- 'pkg/**'
- 'cmd/**'
- 'Dockerfile*'
- 'go.mod'
- 'go.sum'
- '.golangci.yaml'
jobs:
lint:
runs-on: [ default ]
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
token: ${{ secrets.GITHUB_TOKEN }}
- name: golangci-lint
run: make lint
test:
runs-on: [ default ]
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
token: ${{ secrets.GITHUB_TOKEN }}
- name: test
run: make test
build:
runs-on: [ default ]
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
token: ${{ secrets.GITHUB_TOKEN }}
- name: build
run: make build