mirror of
https://github.com/gopherdata/gophernotes.git
synced 2025-04-22 19:06:05 +00:00
22 lines
285 B
YAML
22 lines
285 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.13.x
|
|
- 1.12.x
|
|
- 1.11.x
|
|
- master
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: master
|
|
|
|
sudo: true
|
|
|
|
before_install:
|
|
- sudo apt-get install pkg-config libzmq3-dev build-essential python3-pip
|
|
|
|
script:
|
|
- go test -v ./...
|
|
- go test -race -v ./...
|