Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
よくわからん
Browse files Browse the repository at this point in the history
  • Loading branch information
ledyba committed Oct 11, 2019
1 parent 34f1096 commit 727d9e8
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
language: go
go:
- 1.11
- 1.12
- 1.13

before_install:
- pip install --user codecov
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover

script:
- go test -race -coverprofile=coverage.txt -covermode=atomic "github.com/ledyba/go-trie/matchers/trie/..."
- go test -race -coverprofile=coverage.txt -covermode=atomic "github.com/ledyba/go-trie/matchers/trie/..."
- (cd matchers/trie; go test -benchmem -bench .)

after_success:
- $GOPATH/bin/goveralls -coverprofile=coverage.txt -service=travis-ci

0 comments on commit 727d9e8

Please sign in to comment.