Skip to content

switch to kind

switch to kind #4

Workflow file for this run

name: test-e2e
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
strategy:
fail-fast: false
matrix:
kubernetes-minor-version:
- 1.28
- 1.29
- 1.30
name: E2E Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # pin@v5
with:
go-version: "1.22"
# see https://github.com/actions/setup-go?tab=readme-ov-file#caching-dependency-files-and-build-outputs
cache-dependency-path: |
go.sum
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
version: v0.23.0

Check failure on line 29 in .github/workflows/ci-e2e.yaml

View workflow run for this annotation

GitHub Actions / test-e2e

Invalid workflow file

The workflow is not valid. .github/workflows/ci-e2e.yaml (Line: 29, Col: 9): Unexpected value 'version'
- name: Checkout Repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4
- name: Get dependencies
run: go mod download
- name: Build
run: make
- name: Run E2E-Tests
run: make test-e2e