๐Ÿ“ฆ wagoodman / jotframe

๐Ÿ“„ .travis.yml ยท 35 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35language: go

os:
- linux
- windows

go:
- '1.13'
- '1.14'
- 'master'

# Skip the install step. Don't `go get` dependencies. Only build with the
# code in vendor/
install: true

matrix:
  # It's ok if our code fails on unstable development versions of Go.
  allow_failures:
  - go: master
  # Don't wait for tip tests to finish. Mark the test run green if the
  # tests pass on the stable versions of Go.
  fast_finish: true

notifications:
  email: false

before_script:
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install make ; fi
- go get ./...

# Note: scripts always run to completion
script:
- make validate
- make test