Skip to content

Fixing calling make test #11

Fixing calling make test

Fixing calling make test #11

Workflow file for this run

name: e2e-test
on:
push:
branches:
- master
- add_kind_ci_execution
pull_request:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Kind cluster
id: setup-kind
uses: ./.github/actions/kind-create
with:
kubeconfig: 'tests/e2e/platforms/kind/kind.kconf'
- name: run tests
run: |
KUBECONFIG=${{ steps.setup-kind.inputs.kubeconfig }} make test-e2e
- name: Delete kind cluster
uses: ./.github/actions/kind-delete