mirror of
https://github.com/interviewstreet/go-jira.git
synced 2025-01-05 22:53:53 +02:00
465476156d
Per Wes' suggestion, let's only go back three Go versions, as only the last two are even officially supported. Update the README accordingly.
15 lines
181 B
YAML
15 lines
181 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
go:
|
|
- "1.13.x"
|
|
- "1.14.x"
|
|
- "1.15.x"
|
|
|
|
before_install:
|
|
- go get -t ./...
|
|
|
|
script:
|
|
- GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v ./...
|