forked from nephio-project/free5gc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prow.yaml
39 lines (37 loc) · 851 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: f5gc-operator-unit-test
decorate: true
run_if_changed: "^free5gc-operator/.*.go$"
spec:
containers:
- image: nephio/gotests:2
command:
- "/bin/sh"
args:
- "-c"
- |
cd free5gc-operator/ && make unit
- name: f5gc-operator-lint
decorate: true
run_if_changed: "^free5gc-operator/.*.go$"
spec:
containers:
- image: nephio/gotests:2
command:
- "/bin/sh"
args:
- "-c"
- |
cd free5gc-operator/ && make lint
- name: f5gc-operator-gosec
decorate: true
run_if_changed: "^free5gc-operator/.*.go$"
spec:
containers:
- image: nephio/gotests:2
command:
- "/bin/sh"
args:
- "-c"
- |
cd free5gc-operator/ && make gosec