-
Notifications
You must be signed in to change notification settings - Fork 56
103 lines (81 loc) · 2.23 KB
/
pr-checks.yaml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Pre-submit tests
on:
pull_request:
jobs:
commit-lint:
name: Lint the commit messages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v6
github-actions-yaml-lint:
name: Lint Github Action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
- name: Use tools cache
uses: ./.github/tools-cache
- name: Run unit tests
run: make test-unit
- name: Lint Go code
run: make lint-golang
- name: Lint Jsonnet code
run: make fmt-jsonnet lint-jsonnet && git diff --exit-code
- name: Lint Shell scripts
run: make lint-shell
generate:
name: Verify generated code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
- run: make --always-make generate bundle && git diff --exit-code
tool-versions:
runs-on: ubuntu-latest
name: Validate tools cache
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
- name: Install tools
uses: ./.github/tools-cache
- run: make --always-make tools && git diff --exit-code
build-bundle-image:
name: Build bundle image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- name: Install tools
uses: ./.github/tools-cache
- name: Build Bundle Image
run: make bundle-image
e2e-tests-olm:
name: Run end-to-end tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: e2e tests through OLM
uses: ./.github/e2e-tests-olm