File: .travis.yml

package info (click to toggle)
golang-github-nebulouslabs-entropy-mnemonics 0.0~git20170316.0.7b01a64-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 176 kB
  • sloc: makefile: 2
file content (16 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: go

go:
  - 1.8

install:
  - go get -u github.com/golang/lint/golint
  - go get -u golang.org/x/tools/cmd/cover
  - go get -u golang.org/x/text/unicode/norm
  - test -z "$(go fmt)"
  - test -z "$(golint)"
  - test -z "$(go vet)"

script: go test -v -bench=. && go test -covermode=atomic && go install

sudo: false