1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-01-24 05:26:55 +02:00
oauth2-proxy/.travis.yml

21 lines
582 B
YAML
Raw Normal View History

2012-12-26 18:18:56 +00:00
language: go
2014-11-09 21:48:09 -05:00
go:
2020-09-12 13:47:42 +09:00
- 1.15.x
env:
- COVER=true
install:
# Fetch dependencies
2020-03-29 12:53:22 +01:00
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin v1.24.0
- GO111MODULE=on go mod download
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
before_script:
- ./cc-test-reporter before-build
script:
- make test
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -t gocov
sudo: false
2012-12-26 18:18:56 +00:00
notifications:
email: false