-
Notifications
You must be signed in to change notification settings - Fork 1.5k
52 lines (45 loc) · 1.63 KB
/
test-e2e-book.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
42
43
44
45
46
47
48
49
50
51
52
name: E2E Book Samples
on:
push:
paths:
- 'docs/book/src/getting-started/testdata/project/**'
- 'docs/book/src/cronjob-tutorial/testdata/project/**'
- 'docs/book/src/multiversion-tutorial/testdata/project/**'
- '.github/workflows/test-e2e-book.yml'
pull_request:
paths:
- 'docs/book/src/getting-started/testdata/project/**'
- 'docs/book/src/cronjob-tutorial/testdata/project/**'
- 'docs/book/src/multiversion-tutorial/testdata/project/**'
- '.github/workflows/test-e2e-book.yml'
jobs:
e2e:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
folder: [
"docs/book/src/getting-started/testdata/project",
"docs/book/src/cronjob-tutorial/testdata/project",
"docs/book/src/multiversion-tutorial/testdata/project"
]
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install the latest version of kind
run: |
curl -Lo ./kind https://kind.sigs.k8s.io/dl/latest/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
- name: Verify kind installation
run: kind version
- name: Create kind cluster
run: kind create cluster
- name: Running make test-e2e for ${{ matrix.folder }}
working-directory: ${{ matrix.folder }}
run: make test-e2e