Skip to content

Commit

Permalink
Merge pull request #4 from dedis/travis
Browse files Browse the repository at this point in the history
Setup Travis + coverage
  • Loading branch information
nkcr committed Mar 6, 2020
2 parents b17bbdc + ff80b97 commit 34033b7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: go

go:
- 1.13

before_install:
- go get github.com/mattn/goveralls
- go mod download

script:
- go test -covermode=count -coverprofile=coverage.out ./...
- $GOPATH/bin/goveralls -service=travis-cli -coverprofile=coverage.out

notifications:
email: false

0 comments on commit 34033b7

Please sign in to comment.