gophernotes/.travis.yml
2020-02-27 13:06:40 +01:00

22 lines
262 B
YAML

language: go
go:
- 1.14.x
- 1.13.x
- 1.12.x
- master
matrix:
fast_finish: true
allow_failures:
- go: master
sudo: true
before_install:
- sudo apt-get install build-essential python3-pip
script:
- go test -v ./...
- go test -race -v ./...