Bump k8s.io/client-go from 0.29.0 to 0.31.2 #109
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: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
GO111MODULE: on | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.x | |
- uses: actions/checkout@v4 | |
- name: Install GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
install-only: true | |
- name: Install kind | |
run: | | |
mkdir /opt/kind | |
cd /opt/kind | |
curl -fsSL https://kind.sigs.k8s.io/dl/v0.19.0/kind-linux-amd64 > kind | |
chmod +x kind | |
echo "/opt/kind" >> $GITHUB_PATH | |
- name: Build sources | |
run: go build ./... | |
- name: Run tests | |
run: make test | |
- name: Run tests e2e | |
run: make test-e2e |