Skip to content

E2E tests

E2E tests #35

Workflow file for this run

name: E2E tests
on:
pull_request:
merge_group:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
jobs:
e2e-tests:
runs-on: runs-on,runner=4cpu-linux-x64,run-id=${{ github.run_id }}
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Setup kind
uses: helm/[email protected]
with:
install_only: true
- name: Run E2E tests
run: make test-e2e
- name: Archive artifacts
if: always()
uses: actions/[email protected]
with:
name: e2e-artifacts
path: _artifacts
if-no-files-found: ignore