Update deployment for Kubernetes 1.32.0 #62
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: Run tests | |
on: [ push, pull_request ] | |
permissions: | |
contents: read | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.23.1 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build | |
run: make PREFIX=artifacts cmds | |
- name: install helm and kubectl | |
run: | | |
sudo snap install helm --classic | |
sudo snap install kubectl --classic | |
- name: install kind | |
run: | | |
go install sigs.k8s.io/[email protected] | |
- name: Setup e2e | |
run: make setup-e2e | |
- name: run e2e test | |
run: make test-e2e | |
- name: teardown e2e test | |
run: make teardown-e2e |