gin/.travis.yml

43 lines
1.0 KiB
YAML
Raw Normal View History

2014-07-03 15:23:03 +00:00
language: go
matrix:
fast_finish: true
include:
- go: 1.10.x
- go: 1.11.x
env: GO111MODULE=on
- go: 1.12.x
env: GO111MODULE=on
- go: master
env: GO111MODULE=on
2015-05-18 23:00:17 +00:00
2016-12-06 22:54:11 +00:00
git:
depth: 10
2016-12-06 22:54:11 +00:00
before_install:
- if [[ "${GO111MODULE}" = "on" ]]; then mkdir "${HOME}/go"; export GOPATH="${HOME}/go"; fi
2016-12-06 22:54:11 +00:00
install:
- if [[ "${GO111MODULE}" = "on" ]]; then go mod download; else make install; fi
- if [[ "${GO111MODULE}" = "on" ]]; then export PATH="${GOPATH}/bin:${GOROOT}/bin:${PATH}"; fi
- if [[ "${GO111MODULE}" = "on" ]]; then make tools; fi
2016-12-06 22:54:11 +00:00
2016-01-27 17:32:44 +00:00
go_import_path: github.com/gin-gonic/gin
2015-05-18 23:00:17 +00:00
script:
- make vet
- make fmt-check
- make misspell-check
- make test
2015-06-06 15:35:30 +00:00
after_success:
2016-10-19 09:22:08 +00:00
- bash <(curl -s https://codecov.io/bash)
notifications:
webhooks:
urls:
2016-10-28 19:31:58 +00:00
- https://webhooks.gitter.im/e/7f95bf605c4d356372f4
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false