gophernotes/.travis.yml

22 lines
262 B
YAML

language: go
go:
- 1.15.x
- 1.14.x
- 1.13.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 ./...