-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:wagoodman/dive
- Loading branch information
Showing
3 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters