mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-11-28 09:08:44 +02:00
35f2ae9a36
* worked on wrapping errors in requests.go, added defer statements * removed .idea (generated by goland) * added another require.NoError * Update pkg/requests/requests.go Co-Authored-By: Dan Bond <pm@danbond.io> * fixed out-of-order imports * changelog entry added * swapped error definitions to use fmt.Errorf rather than Wrap() * formatting changes, added new defers to requests_test.go * suppot for go1.12 pipeline removed from travis pipeline, .idea/ added to gitignore * Reorder changelog entry
13 lines
290 B
YAML
13 lines
290 B
YAML
language: go
|
|
go:
|
|
- 1.13.x
|
|
install:
|
|
# Fetch dependencies
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin v1.17.1
|
|
- GO111MODULE=on go mod download
|
|
script:
|
|
- ./configure && make test
|
|
sudo: false
|
|
notifications:
|
|
email: false
|