test controller #26
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 controller' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y curl make | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.21.6' | |
- run: go version | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install deps | |
uses: helm/[email protected] | |
with: | |
install_only: true | |
- name: deps | |
run: | | |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash | |
- name: e2e-tests | |
run: | |
make kind-e2e-tests |