generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 16
43 lines (37 loc) · 929 Bytes
/
validate.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
name: validate
env:
KYMA_STABILITY: "unstable"
KYMA: "./hack/kyma"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sync GO dependencies
run: |
go mod tidy
go mod vendor
- name: Run tests
run: |
make test-only
validate-crd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install k3d tools
run: |
make -C hack/ci/ install-k3d-tools
- name: Install Kyma CLI & setup k3d cluster using kyma CLI
run: |
make kyma
make -C hack/ci/ create-k3d
kubectl version
kubectl cluster-info
- name: apply crd
run: kubectl apply -f config/crd/bases/operator.kyma-project.io_eventings.yaml