forked from KusionStack/kusion
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (41 loc) · 920 Bytes
/
e2e-test.yml
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
34
35
36
37
38
39
40
41
name: e2e test
on:
push:
branches:
- ks-main
pull_request:
branches:
- ks-main
jobs:
# e2e:
# name: e2e test
# runs-on: ubuntu-20.04
# steps:
# - name: checkout code
# uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: install Go
# uses: actions/setup-go@v2
# with:
# go-version: 1.22
# - name: Setup K3d
# uses: nolar/[email protected]
# - name: run e2e
# run: make e2e-test
e2e-windows:
name: e2e test on windows
runs-on: windows-latest
steps:
- name: checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: install Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Setup K3d
uses: nolar/[email protected]
- name: run e2e
run: make e2e-test