gin/.travis.yml

42 lines
982 B
YAML
Raw Normal View History

2014-07-03 08:23:03 -07:00
language: go
matrix:
fast_finish: true
include:
- go: 1.11.x
env: GO111MODULE=on
- go: 1.12.x
env: GO111MODULE=on
- go: 1.13.x
- go: master
2015-05-19 01:00:17 +02:00
2016-12-06 23:54:11 +01:00
git:
depth: 10
2016-12-06 23:54:11 +01:00
before_install:
- if [[ "${GO111MODULE}" = "on" ]]; then mkdir "${HOME}/go"; export GOPATH="${HOME}/go"; fi
2016-12-06 23:54:11 +01:00
install:
2019-11-25 15:42:23 +08:00
- if [[ "${GO111MODULE}" = "on" ]]; then go mod download; fi
- if [[ "${GO111MODULE}" = "on" ]]; then export PATH="${GOPATH}/bin:${GOROOT}/bin:${PATH}"; fi
- if [[ "${GO111MODULE}" = "on" ]]; then make tools; fi
2016-12-06 23:54:11 +01:00
2016-01-28 02:32:44 +09:00
go_import_path: github.com/gin-gonic/gin
2015-05-19 01:00:17 +02:00
script:
- make vet
- make fmt-check
- make misspell-check
- make test
2015-06-06 17:35:30 +02:00
after_success:
2016-10-19 11:22:08 +02:00
- bash <(curl -s https://codecov.io/bash)
notifications:
webhooks:
urls:
2016-10-28 21:31:58 +02: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