mirror of
https://github.com/octoleo/restic.git
synced 2024-11-12 08:16:37 +00:00
2b39f9f4b2
Among others, this updates minio-go, so that the new "eu-west-3" zone for AWS is supported.
18 lines
268 B
YAML
18 lines
268 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
|
|
install:
|
|
- go get -u github.com/golang/lint/golint
|
|
- go get -u github.com/HewlettPackard/gas
|
|
|
|
script:
|
|
- golint --set_exit_status
|
|
- go vet
|
|
- go test -v -cover -race
|
|
- go test -bench .
|
|
- gas ./... |