...
1name: "OpenID Connect Conformity Tests"
2
3on:
4 pull_request:
5 branches:
6 - master
7
8jobs:
9 oidc-conformity:
10 runs-on: ubuntu-latest
11 steps:
12 - name: Checkout repository
13 uses: actions/checkout@v2
14 with:
15 fetch-depth: 2
16 repository: ory/hydra
17 ref: master
18 - uses: actions/setup-go@v2
19 with:
20 go-version: '^1.15.0'
21 - name: Update fosite
22 run: |
23 go mod edit -replace github.com/ory/fosite=github.com/${{ github.event.pull_request.head.repo.full_name }}@${{ github.event.pull_request.head.sha }}
24 go mod tidy
25 - name: Start service
26 run: ./test/conformance/start.sh
27 - name: Run tests
28 run: ./test/conformance/test.sh -v -short -parallel 16
View as plain text