Go modules!

This commit is contained in:
Ken-Håvard Lieng 2018-08-31 03:07:13 +02:00
parent b0b3489e15
commit 628dc66685
91 changed files with 1552 additions and 688 deletions

2
vendor/github.com/pelletier/go-toml/.gitignore generated vendored Normal file
View file

@ -0,0 +1,2 @@
test_program/test_program_bin
fuzz/

23
vendor/github.com/pelletier/go-toml/.travis.yml generated vendored Normal file
View file

@ -0,0 +1,23 @@
sudo: false
language: go
go:
- 1.8.x
- 1.9.x
- 1.10.x
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
script:
- if [ -n "$(go fmt ./...)" ]; then exit 1; fi
- ./test.sh
- ./benchmark.sh $TRAVIS_BRANCH https://github.com/$TRAVIS_REPO_SLUG.git
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
branches:
only: [master]
after_success:
- $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out -repotoken $COVERALLS_TOKEN

0
vendor/github.com/pelletier/go-toml/benchmark.sh generated vendored Executable file → Normal file
View file

0
vendor/github.com/pelletier/go-toml/fuzz.sh generated vendored Executable file → Normal file
View file

0
vendor/github.com/pelletier/go-toml/test.sh generated vendored Executable file → Normal file
View file