Skip to content

Fixing running tests #19

Fixing running tests

Fixing running tests #19

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
- name: run tests
run: |
KUBECONFIG=${{ steps.setup-kind.outputs.kubeconfig }} go test -v -timeout 15m -tags e2e --ginkgo.show-node-events --ginkgo.trace --ginkgo.v
working-directory: tests/e2e
- name: Delete kind cluster
uses: ./.github/actions/kind-delete