-
Notifications
You must be signed in to change notification settings - Fork 52
33 lines (32 loc) · 785 Bytes
/
e2e.yml
File metadata and controls
33 lines (32 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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/kind-action@v1.12.0
with:
install_only: true
- name: Run E2E tests
run: make test-e2e
- name: Archive artifacts
if: always()
uses: actions/upload-artifact@v5.0.0
with:
name: e2e-artifacts
path: _artifacts
if-no-files-found: ignore