mirror of
https://github.com/Luzifer/duplicity-backup.git
synced 2024-11-09 23:50:08 +00:00
15 lines
326 B
YAML
15 lines
326 B
YAML
language: go
|
|
go:
|
|
- 1.3
|
|
- 1.4
|
|
- 1.5
|
|
- tip
|
|
|
|
install:
|
|
- go get -v ./...
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/onsi/gomega
|
|
- go install github.com/onsi/ginkgo/ginkgo
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
|
|
script: $HOME/gopath/bin/ginkgo -r --randomizeAllSpecs --randomizeSuites --race --trace
|