Skip to content

Commit

Permalink
Testing ants on multiple operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
panjf2000 committed Nov 15, 2019
1 parent 562ae1c commit 73c26bc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
language: go

go:
- "1.9.x"
- "1.10.x"
- "1.11.x"
- "1.12.x"
- "1.13.x"
os:
- linux
- osx
- windows

before_install:
- go get -t -v ./...
go:
- 1.11.x
- 1.12.x
- 1.13.x

script:
#- go test -cpu=16 -bench=. -benchmem=true -run=none ./...
- go test -race -coverprofile=coverage.txt -covermode=atomic -v

after_success:
- bash <(curl -s https://codecov.io/bash)
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then curl -s https://codecov.io/bash > .codecov && chmod +x .codecov && ./.codecov; else bash <(curl -s https://codecov.io/bash); fi

0 comments on commit 73c26bc

Please sign in to comment.