forked from nephio-project/nephio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prow.yaml
39 lines (39 loc) · 849 Bytes
/
.prow.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
presubmits:
- name: presubmit-nephio-go-test
decorate: true
run_if_changed: "^.*.go$"
spec:
containers:
- image: nephio/gotests:4
command:
- make
args:
- unit
- name: presubmit-nephio-gosec
decorate: true
run_if_changed: "^.*.go$"
spec:
containers:
- image: nephio/gotests:4
command:
- make
args:
- gosec
- name: presubmit-nephio-golangci-lint
decorate: true
run_if_changed: "^.*.go$"
spec:
containers:
- image: nephio/gotests:4
command:
- make
args:
- lint
- name: presubmit-nephio-license-header-check
decorate: true
run_if_changed: "^.*.go$"
spec:
containers:
- image: nephio/gotests:4
command:
- "/usr/local/bin/checklicense.sh"