File tree Expand file tree Collapse file tree 4 files changed +3
-74
lines changed Expand file tree Collapse file tree 4 files changed +3
-74
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,11 @@ jobs:
1313 strategy :
1414 fail-fast : false
1515 matrix :
16- go : ["1.20 ", "1.19 "]
16+ go : ["1.21 ", "1.20 "]
1717 steps :
1818 - name : Checkout
19192020
21- - name : License check
22- run : ./scripts/license-check.sh
23-
2421 - name : Go installation
25222623 with :
2926 - name : Go dependencies installation
3027 run : go get -d ./...
3128
32- - name : Golint installation
33- run : go get -u golang.org/x/lint/golint
34-
3529 - name : Build
3630 run : go build ./...
3731
38- - name : Lint
39- run : ./scripts/golint.sh
40-
4132 - name : Vet
4233 run : go vet ./...
43-
44- - name : Test
45- run : go test -v ./...
Original file line number Diff line number Diff line change 1- ARG GO_VERSION=1.20.1
2- ARG ALPINE_VERSION=3.17
1+ ARG GO_VERSION=1.21.3-alpine3.18
32ARG GOIMPORTS_VERSION=0.6.0
43ARG DELVE_VERSION=1.20.1
54ARG SWAGGER_VERSION=0.30.4
65
76
87# # Base image
9- FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base
8+ FROM golang:${GO_VERSION} AS base
109
1110WORKDIR /go/src/app
1211
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments