-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4f690b
commit 0ded9c8
Showing
4 changed files
with
81 additions
and
65 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 |
---|---|---|
@@ -1,2 +1,53 @@ | ||
# Ignore docs files | ||
_gh_pages | ||
_site | ||
|
||
# Ignore temporary files | ||
README.html | ||
coverage.out | ||
.tmp | ||
|
||
# Numerous always-ignore extensions | ||
*.diff | ||
*.err | ||
*.log | ||
*.orig | ||
*.rej | ||
*.swo | ||
*.swp | ||
*.vi | ||
*.zip | ||
*~ | ||
|
||
# OS or Editor folders | ||
._* | ||
.cache | ||
.DS_Store | ||
.idea | ||
.project | ||
.settings | ||
.tmproj | ||
*.esproj | ||
*.sublime-project | ||
*.sublime-workspace | ||
nbproject | ||
Thumbs.db | ||
|
||
# Komodo | ||
.komodotools | ||
*.komodoproject | ||
|
||
# SCSS-Lint | ||
scss-lint-report.xml | ||
|
||
# grunt-contrib-sass cache | ||
.sass-cache | ||
|
||
# Jekyll metadata | ||
docs/.jekyll-metadata | ||
|
||
# Folders to ignore | ||
.build | ||
.test | ||
bower_components | ||
node_modules |
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 |
---|---|---|
@@ -1,70 +1,25 @@ | ||
language: go | ||
sudo: false | ||
go: | ||
- 1.8 | ||
- 1.7.5 | ||
- 1.7.4 | ||
- 1.7.3 | ||
- 1.7.2 | ||
- 1.7.1 | ||
- 1.7 | ||
- tip | ||
- 1.6.4 | ||
- 1.6.3 | ||
- 1.6.2 | ||
- 1.6.1 | ||
- 1.6 | ||
- 1.5.4 | ||
- 1.5.3 | ||
- 1.5.2 | ||
- 1.5.1 | ||
- 1.5 | ||
- 1.4.3 | ||
- 1.4.2 | ||
- 1.4.1 | ||
- 1.4 | ||
- 1.3.3 | ||
- 1.3.2 | ||
- 1.3.1 | ||
- 1.3 | ||
- 1.2.2 | ||
- 1.2.1 | ||
- 1.2 | ||
- 1.1.2 | ||
- 1.1.1 | ||
- 1.1 | ||
before_install: | ||
- go get github.com/mattn/goveralls | ||
script: | ||
- $HOME/gopath/bin/goveralls -service=travis-ci | ||
notifications: | ||
email: | ||
on_success: never | ||
matrix: | ||
fast_finish: true | ||
include: | ||
- go: 1.11.x | ||
env: TEST_METHOD=goveralls | ||
- go: 1.10.x | ||
- go: tip | ||
- go: 1.9.x | ||
- go: 1.8.x | ||
- go: 1.7.x | ||
- go: 1.6.x | ||
- go: 1.5.x | ||
allow_failures: | ||
- go: tip | ||
- go: 1.6.4 | ||
- go: 1.6.3 | ||
- go: 1.6.2 | ||
- go: 1.6.1 | ||
- go: 1.6 | ||
- go: 1.5.4 | ||
- go: 1.5.3 | ||
- go: 1.5.2 | ||
- go: 1.5.1 | ||
- go: 1.5 | ||
- go: 1.4.3 | ||
- go: 1.4.2 | ||
- go: 1.4.1 | ||
- go: 1.4 | ||
- go: 1.3.3 | ||
- go: 1.3.2 | ||
- go: 1.3.1 | ||
- go: 1.3 | ||
- go: 1.2.2 | ||
- go: 1.2.1 | ||
- go: 1.2 | ||
- go: 1.1.2 | ||
- go: 1.1.1 | ||
- go: 1.1 | ||
- go: 1.9.x | ||
- go: 1.8.x | ||
- go: 1.7.x | ||
- go: 1.6.x | ||
- go: 1.5.x | ||
script: ./test.sh $TEST_METHOD | ||
notifications: | ||
email: | ||
on_success: never |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
set -ev | ||
|
||
if [[ "$1" == "goveralls" ]]; then | ||
echo "Testing with goveralls..." | ||
go get github.com/mattn/goveralls | ||
$HOME/gopath/bin/goveralls -service=travis-ci | ||
else | ||
echo "Testing with go test..." | ||
go test -v ./... | ||
fi |