File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -30,54 +30,74 @@ jobs:
30
30
steps :
31
31
- uses : actions/checkout@v4
32
32
name : Checkout code
33
+
33
34
- name : Get Golang version
34
35
id : vars
35
36
run : |
36
37
GOLANG_VERSION=$(./hack/golang-version.sh)
37
38
echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION := }" >> $GITHUB_ENV
39
+
38
40
- name : Install Go
39
41
uses : actions/setup-go@v5
40
42
with :
41
43
go-version : ${{ env.GOLANG_VERSION }}
44
+
42
45
- name : Lint
43
46
uses : golangci/golangci-lint-action@v6
44
47
with :
45
48
version : latest
46
49
args : -v --timeout 5m
47
50
skip-cache : true
51
+
48
52
- name : Check golang modules
49
53
run : |
50
54
make check-vendor
51
55
make -C deployments/devel check-modules
56
+
52
57
test :
53
58
name : Unit test
54
59
runs-on : ubuntu-latest
55
60
steps :
56
61
- name : Checkout code
57
62
uses : actions/checkout@v4
63
+
58
64
- name : Get Golang version
59
65
id : vars
60
66
run : |
61
67
GOLANG_VERSION=$(./hack/golang-version.sh)
62
68
echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION := }" >> $GITHUB_ENV
69
+
63
70
- name : Install Go
64
71
uses : actions/setup-go@v5
65
72
with :
66
73
go-version : ${{ env.GOLANG_VERSION }}
74
+
67
75
- run : make test
76
+
77
+ - name : Upload coverage reports to Codecov
78
+ uses : codecov/codecov-action@v5
79
+ with :
80
+ token : ${{ secrets.CODECOV_TOKEN }}
81
+ files : ./coverage.out
82
+ fail_ci_if_error : true
83
+ verbose : true
84
+
68
85
build :
69
86
name : Build
70
87
runs-on : ubuntu-latest
71
88
steps :
72
89
- name : Checkout code
73
90
uses : actions/checkout@v4
91
+
74
92
- name : Get Golang version
75
93
id : vars
76
94
run : |
77
95
GOLANG_VERSION=$(./hack/golang-version.sh)
78
96
echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION ?= }" >> $GITHUB_ENV
97
+
79
98
- name : Install Go
80
99
uses : actions/setup-go@v5
81
100
with :
82
101
go-version : ${{ env.GOLANG_VERSION }}
102
+
83
103
- run : make build
You can’t perform that action at this time.
0 commit comments