mirror of
https://github.com/Luzifer/worktime.git
synced 2024-12-23 14:31:16 +00:00
26 lines
499 B
YAML
26 lines
499 B
YAML
|
language: go
|
||
|
go_import_path: github.com/pkg/sftp
|
||
|
go:
|
||
|
- 1.4.3
|
||
|
- 1.5.2
|
||
|
- 1.6.2
|
||
|
- tip
|
||
|
|
||
|
sudo: false
|
||
|
|
||
|
addons:
|
||
|
ssh_known_hosts:
|
||
|
- bitbucket.org
|
||
|
|
||
|
install:
|
||
|
- go get -t -v ./...
|
||
|
- ssh-keygen -t rsa -q -P "" -f /home/travis/.ssh/id_rsa
|
||
|
|
||
|
script:
|
||
|
- go test -integration -v ./...
|
||
|
- go test -testserver -v ./...
|
||
|
- go test -integration -testserver -v ./...
|
||
|
- go test -race -integration -v ./...
|
||
|
- go test -race -testserver -v ./...
|
||
|
- go test -race -integration -testserver -v ./...
|