File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- go : ['1.17']
15+ go : ['1.17', '1.18' ]
1616
1717 steps :
1818 - name : install make
Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- go : ['1.17']
15+ go : ['1.17', '1.18' ]
1616
1717 steps :
1818 - name : install make
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ validate_go:
6767lint : $(GOLANGCI_LINT ) # # Lint the code
6868 @go mod vendor
6969 @current_ver=$$(go version | { read _ _ v _; echo $${v#go}; } ) ; \
70- if [[ " $$ current_ver" == * " 1.18. " * ]]; then echo " Linting is not fully supported for golang 1.18. Consider using golang 1.17" ; \
70+ if [[ " $$ current_ver" == * " 1.18" * ]]; then echo " Linting is not fully supported for golang 1.18. Consider using golang 1.17" ; \
7171 $(GOLANGCI_LINT ) run --disable-all --enable goimports --enable gofmt --enable ineffassign --timeout 5m; else \
7272 $(GOLANGCI_LINT ) run --enable goimports --timeout 5m; \
7373 fi
You can’t perform that action at this time.
0 commit comments