bump(github.com/coreos/go-oidc): 065b426bd41667456c1a924468f507673629c46b

This commit is contained in:
Eric Chiang
2018-01-19 11:18:27 -08:00
parent 2d8cb9c4ad
commit 379af0405c
75 changed files with 3216 additions and 5866 deletions

16
vendor/github.com/coreos/go-oidc/test generated vendored Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
set -e
# Filter out any files with a !golint build tag.
LINTABLE=$( go list -tags=golint -f '
{{- range $i, $file := .GoFiles -}}
{{ $file }} {{ end }}
{{ range $i, $file := .TestGoFiles -}}
{{ $file }} {{ end }}' github.com/coreos/go-oidc )
go test -v -i -race github.com/coreos/go-oidc/...
go test -v -race github.com/coreos/go-oidc/...
golint -set_exit_status $LINTABLE
go vet github.com/coreos/go-oidc/...
go build -v ./example/...