mirror of
https://github.com/emojisum/emojisum.git
synced 2024-11-15 20:28:37 +00:00
Vincent Batts
112c267af5
fix golint url and add newer golang versions Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
24 lines
439 B
YAML
24 lines
439 B
YAML
language: go
|
|
go:
|
|
- 1.x
|
|
- 1.11.x
|
|
- 1.10.x
|
|
- 1.9.x
|
|
- 1.8.x
|
|
- 1.7.x
|
|
|
|
sudo: false
|
|
|
|
before_install:
|
|
- git config --global url."https://".insteadOf git://
|
|
- go get -u -v golang.org/x/lint/golint
|
|
- mkdir -p $GOPATH/src/github.com/emojisum && ln -sf $(pwd) $GOPATH/src/github.com/emojisum/emojisum
|
|
- go get -d ./...
|
|
|
|
install: true
|
|
|
|
script:
|
|
- go vet ./...
|
|
- golint -set_exit_status ./...
|
|
- go test -v ./...
|
|
- go build .
|