Skip to content

Enable e2e tests in github actions #48

Enable e2e tests in github actions

Enable e2e tests in github actions #48

Workflow file for this run

name: controller-build
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make test
e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: helm/kind-action@v1
with:
install_only: true
- run: HUB=quay.io/${{ github.actor }} TAG=${{ github.sha }} make e2e