Merge branch 'master' of github.com:wagoodman/dive

This commit is contained in:
Alex Goodman 2018-11-30 17:21:21 -05:00
commit 1baa942d37
No known key found for this signature in database
GPG Key ID: 743640FAA11698A1
3 changed files with 38 additions and 3 deletions

31
.travis.yml Normal file
View File

@ -0,0 +1,31 @@
language: go
go:
- '1.8'
- '1.9'
- '1.10'
- '1.11'
- 'master'
# Skip the install step. Don't `go get` dependencies. Only build with the
# code in vendor/
install: true
matrix:
# It's ok if our code fails on unstable development versions of Go.
allow_failures:
- go: master
# Don't wait for tip tests to finish. Mark the test run green if the
# tests pass on the stable versions of Go.
fast_finish: true
notifications:
email: false
before_script:
- go get -t ./...
# Note: scripts always run to completion
script:
- make validate
- make test

View File

@ -11,7 +11,7 @@ run-large: build
build:
go build -o build/$(BIN)
release: test
release: test validate
./.scripts/tag.sh
goreleaser --rm-dist
@ -21,6 +21,10 @@ install:
test: build
go test -cover -v ./...
validate:
@! gofmt -s -d -l . 2>&1 | grep -vE '^\.git/'
go vet ./...
lint: build
golint -set_exit_status $$(go list ./...)
@ -29,4 +33,4 @@ clean:
rm -rf vendor
go clean
.PHONY: build install test lint clean release
.PHONY: build install test lint clean release validate