mirror of
https://github.com/interviewstreet/go-jira.git
synced 2025-01-05 22:53:53 +02:00
3f966ddaaa
go v1.14 was released, but we don't test for it right now. Additionally, the allowed failure for go v1.13 is removed, because this library should support this version (and it is not marked as not supported).
18 lines
219 B
YAML
18 lines
219 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
go:
|
|
- "1.9.x"
|
|
- "1.10.x"
|
|
- "1.11.x"
|
|
- "1.12.x"
|
|
- "1.13.x"
|
|
- "1.14.x"
|
|
|
|
before_install:
|
|
- go get -t ./...
|
|
|
|
script:
|
|
- GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v ./...
|