18 lines
295 B
YAML
18 lines
295 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
go_import_path: github.com/ScaleFT/sshkeys
|
|
|
|
go:
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- tip
|
|
|
|
before_install:
|
|
- go get -u github.com/stretchr/testify/require github.com/dchest/bcrypt_pbkdf golang.org/x/crypto/ed25519 golang.org/x/crypto/ssh
|
|
|
|
script:
|
|
- go test -v ./...
|