.travis.yml
author Mikael Berthe <mikael@lilotux.net>
Sat, 15 Jul 2017 22:25:46 +0200
changeset 167 1341bacd01c9
parent 131 6461e0637767
child 183 498d5d188119
permissions -rw-r--r--
Add option --keep to keep the N last items This complements the --limit option which is used for the API call itself. The keep flag is used after the filters to output only a maximum number of filtered items.

language: go
go:
- 1.7
- 1.8
- master
matrix:
  allow_failures:
    - go: master
  fast_finish: true
branches:
  only:
  - master
install:
- go get golang.org/x/net/html
- go get github.com/spf13/cobra
- go get github.com/spf13/viper
- go get github.com/McKael/madon
- go get github.com/ghodss/yaml
- go get github.com/pkg/errors
- go get github.com/kr/text
- go get github.com/m0t0k1ch1/gomif
- go get github.com/mattn/go-isatty
- go get github.com/stretchr/testify/assert