3e1e0b604f
This adds the oauth2 provider `oidc`. It needs an additional argument, the OIDC discovery endpoint to figure out where the auth and token URLs are. Configuration is similar to setting up the Google Authentication with these changes: * `OAUTH2_PROVIDER = oidc` * `OAUTH2_OIDC_DISCOVERY_ENDPOINT = https://auth.exampe.org/discovery`
16 lines
220 B
YAML
16 lines
220 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.12"
|
|
- "1.13"
|
|
|
|
install:
|
|
- go get -v -t github.com/coreos/go-oidc/...
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get golang.org/x/lint/golint
|
|
|
|
script:
|
|
- ./test
|
|
|
|
notifications:
|
|
email: false
|