File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,23 @@ steps:
28
28
image : golang:1.15
29
29
commands :
30
30
- make lint-backend
31
- - GOOS=windows make golangci-lint vet
32
31
environment :
33
32
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
34
33
GOSUMDB : sum.golang.org
35
34
TAGS : bindata sqlite sqlite_unlock_notify
36
35
36
+ - name : lint-backend-windows
37
+ pull : always
38
+ image : golang:1.15
39
+ commands :
40
+ - make golangci-lint vet
41
+ environment :
42
+ GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
43
+ GOSUMDB : sum.golang.org
44
+ TAGS : bindata sqlite sqlite_unlock_notify
45
+ GOOS : windows
46
+ GOARCH : amd64
47
+
37
48
- name : lint-backend-gogit
38
49
pull : always
39
50
image : golang:1.15
Original file line number Diff line number Diff line change @@ -9,12 +9,11 @@ import (
9
9
"net/http"
10
10
"strings"
11
11
12
- "code.gitea.io/gitea/modules/templates"
13
-
14
12
"code.gitea.io/gitea/models"
15
13
"code.gitea.io/gitea/modules/base"
16
14
"code.gitea.io/gitea/modules/log"
17
15
"code.gitea.io/gitea/modules/setting"
16
+ "code.gitea.io/gitea/modules/templates"
18
17
19
18
gouuid "github.com/google/uuid"
20
19
"github.com/quasoft/websspi"
You can’t perform that action at this time.
0 commit comments