mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-05 05:07:38 +08:00
29 lines
285 B
YAML
29 lines
285 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.2.x
|
|
- 1.3.x
|
|
- 1.4.x
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- tip
|
|
|
|
os:
|
|
- linux
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
before_install:
|
|
- go get -v github.com/bmizerany/assert
|
|
|
|
script:
|
|
- go test -v ./...
|
|
|
|
notifications:
|
|
email: false
|