libgocryptfs/.travis.yml

20 lines
301 B
YAML
Raw Normal View History

2015-10-11 23:30:21 +02:00
language: go
2015-12-20 17:06:54 +01:00
# Debian Jessie has Go 1.3.3, Fedora 22 has Go 1.4.3,
# Fedora 23 has Go 1.5.1
2015-10-11 23:30:21 +02:00
go:
2015-12-20 17:06:54 +01:00
- 1.3.3
- 1.4.3
2015-10-11 23:30:21 +02:00
- 1.5.1
2016-04-03 22:51:44 +02:00
- 1.6
2015-10-11 23:30:21 +02:00
- tip
install:
- go get .
# Travis does not support FUSE, so we can't just run "go test ./..."
script:
- go build
2015-12-20 17:14:48 +01:00
- ./build.bash
2016-02-06 22:53:38 +01:00
- go test ./internal/...