summaryrefslogtreecommitdiff
path: root/vendor/0xacab.org/leap/obfsvpn/.gitlab-ci.yml
blob: 91814f33f6a2b61b2437f74c7be36615fc4c3ad8 (plain)
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
39
40
---

stages:
  - test
  - validate

test:
  image: golang:alpine
  stage: test
  script:
    - apk add build-base
    - apk add git
    - go get ./... && go test -v ./...
  tags:
    - linux

validate:
  image: golang:alpine
  stage: test
  script: |
      apk add build-base git
      go version
      go env

      go install honnef.co/go/tools/cmd/staticcheck@latest
      go install github.com/securego/gosec/v2/cmd/gosec@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,ST1016,ST1020,ST1021,ST1022,ST1023 ./...
      # gosec does not handle modules correctly.
      # See: https://github.com/securego/gosec/issues/622
      gosec ./...

      go mod tidy
      git diff --exit-code -- go.mod go.sum