.travis.yml
author Mikael Berthe <mikael@lilotux.net>
Sun, 28 May 2017 10:36:07 +0200
changeset 157 908a433f02c0
parent 131 6461e0637767
child 183 498d5d188119
permissions -rw-r--r--
Version 1.2.0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
language: go
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
go:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
- 1.7
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
- 1.8
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
- master
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
matrix:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
  allow_failures:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
    - go: master
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
  fast_finish: true
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
branches:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
  only:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    12
  - master
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    13
install:
128
e0621d1b9230 Update travis YAML file
Mikael Berthe <mikael@lilotux.net>
parents: 124
diff changeset
    14
- go get golang.org/x/net/html
1
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    15
- go get github.com/spf13/cobra
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    16
- go get github.com/spf13/viper
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    17
- go get github.com/McKael/madon
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    18
- go get github.com/ghodss/yaml
45
b58a7ea1aeb2 Use github.com/pkg/errors
Mikael Berthe <mikael@lilotux.net>
parents: 37
diff changeset
    19
- go get github.com/pkg/errors
124
20d514540f37 Improve text wrapping
Mikael Berthe <mikael@lilotux.net>
parents: 96
diff changeset
    20
- go get github.com/kr/text
37
9bc03db114c3 Add server statistics with gomif (using instances.mastodon.xyz API)
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    21
- go get github.com/m0t0k1ch1/gomif
50
c6adf9d9e996 Disable ANSI sequences when stdout is not a TTY
Mikael Berthe <mikael@lilotux.net>
parents: 45
diff changeset
    22
- go get github.com/mattn/go-isatty
131
6461e0637767 Update travis file
Mikael Berthe <mikael@lilotux.net>
parents: 128
diff changeset
    23
- go get github.com/stretchr/testify/assert