fix: isloopback returns true incorrectly (#765) #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "OpenID Connect Conformity Tests on Master Branch)" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
oidc-conformity: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
repository: ory/hydra | |
ref: master | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "1.20" | |
- name: Update fosite | |
run: | | |
go mod edit -replace github.com/ory/fosite=github.com/ory/fosite@${{ github.sha }} | |
go mod tidy | |
- name: Start service | |
run: ./test/conformance/start.sh | |
- name: Run tests | |
run: ./test/conformance/test.sh -v -short -parallel 16 |