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

14
vendor/github.com/mschoch/smat/.gitignore generated vendored Normal file
View file

@ -0,0 +1,14 @@
#*
*.sublime-*
*~
.#*
.project
.settings
**/.idea/
**/*.iml
/examples/bolt/boltsmat-fuzz.zip
/examples/bolt/workdir/
.DS_Store
coverage.out
*.test
tags

16
vendor/github.com/mschoch/smat/.travis.yml generated vendored Normal file
View file

@ -0,0 +1,16 @@
sudo: false
language: go
go:
- 1.6
script:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
- go get github.com/kisielk/errcheck
- go test -v -race
- go vet
- errcheck ./...
- go test -coverprofile=profile.out -covermode=count
- goveralls -service=travis-ci -coverprofile=profile.out -repotoken $COVERALLS
notifications:
email:
- marty.schoch@gmail.com