forked from h3poteto/kube-job
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (45 loc) · 1.19 KB
/
e2e.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
name: E2E
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
env:
KIND_VERSION: v0.20.0
KUBECTL_VERSION: v1.27.3
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Install kubectl
env:
KUBECTL_VERSION: ${{ env.KUBECTL_VERSION }}
BIN_DIR: ${{ github.workspace }}/tools/
run: |
mkdir -p $BIN_DIR
curl -sSLo "$BIN_DIR/kubectl" "https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl"
chmod +x "$BIN_DIR/kubectl"
echo "$BIN_DIR" >> "$GITHUB_PATH"
- uses: engineerd/[email protected]
with:
version: ${{ env.KIND_VERSION }}
- name: Info
run: |
kind version
kubectl cluster-info
kubectl version
- name: Build
run: |
make build
- name: Install ginkgo
run: |
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
- name: Testing
run: |
go mod download
ginkgo -r ./e2e