-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalidate.yml
38 lines (37 loc) · 1.08 KB
/
validate.yml
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
pipeline:
info: &info
image: golang:alpine
environment:
GO111MODULE: "on"
CGO_ENABLED: "0"
commands:
- go version
- go env
lint:
<< : *info
commands:
- go install honnef.co/go/tools/cmd/staticcheck@latest
- go install github.com/securego/gosec/v2/cmd/gosec@latest
- go install mellium.im/checkmd@latest
- go install mellium.im/checkdoc@latest
- export PATH=$(go env GOPATH)/bin:$PATH
- go vet ./...
- gofmt -s -l . && [ -z "$(gofmt -s -l .)" ]
# See: https://staticcheck.io/docs/checks
- staticcheck -checks inherit,ST1000,ST1003,ST1016,ST1020,ST1021,ST1022,ST1023 ./...
- gosec ./...
- |
checkdoc -fileheader.pattern='-' ./... <<EOF
Copyright \d\d\d\d The Mellium Contributors\.
Use of this source code is governed by the BSD 2-clause
license that can be found in the LICENSE file\.
EOF
- checkmd .
validate:
<< : *info
commands:
- apk add git
- go mod tidy
- git diff --exit-code -- go.mod go.sum
depends_on:
- dco