mirror of
https://github.com/safing/portmaster
synced 2025-04-10 05:59:10 +00:00
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
|