mirror of
https://github.com/safing/portbase
synced 2025-09-01 01:59:48 +00:00
* Fix tests deps installation * Fix test install script (exit after install) * Use .gitattributes to control line endings * Clean up deps
20 lines
331 B
YAML
20 lines
331 B
YAML
language: go
|
|
|
|
os:
|
|
- linux
|
|
- windows
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- develop
|
|
- /^feature\/travis\/.+$/ # feature/travis/*
|
|
- /^fix\/travis\/.+$/ # fix/travis/*
|
|
|
|
install:
|
|
- go get -d -u github.com/golang/dep
|
|
- go install github.com/golang/dep/cmd/dep
|
|
- dep ensure
|
|
- ./test install
|
|
|
|
script: ./test --scripted
|