Skip to content

chore: change flag name to CTP (#101) #392

chore: change flag name to CTP (#101)

chore: change flag name to CTP (#101) #392

Workflow file for this run

name: test-e2e
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
strategy:
fail-fast: false
matrix:
kubernetes-minor-version:
- 1.28.0
- 1.29.0
- 1.30.0
name: E2E Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # 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
with:
cluster_name: kind
version: v0.23.0
node_image: kindest/node:v${{ matrix.kubernetes-minor-version }}
kubectl_version: v${{ matrix.kubernetes-minor-version }}
- name: Checkout Repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4
- name: Run E2E-Tests
run: make test-e2e