summaryrefslogtreecommitdiff
path: root/examples/go-dashboard/vendor/github.com/mum4k/termdash/.travis.yml
blob: 7c8b739a0444f204d7de550a96b68d22e5c60a45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: go
go:
        - 1.14.x
        - 1.15.x
        - stable
script:
        - go get -t ./...
        - go get -u golang.org/x/lint/golint
        - go test ./...
        - CGO_ENABLED=1 go test -race ./...
        - go vet ./...
        - diff -u <(echo -n) <(gofmt -d -s .)
        - diff -u <(echo -n) <(./internal/scripts/autogen_licences.sh .)
        - diff -u <(echo -n) <(golint ./...)
env:
  global:
        - CGO_ENABLED=0