the nonce query parameter is base64 URL-encoded #114
Workflow file for this run
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: API checks | |
on: | |
push: | |
paths: | |
- 'api/**' | |
pull_request: | |
paths: | |
- 'api/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install OpenAPI spec validator | |
run: pip install openapi-spec-validator | |
- name: Check Verification challenge-response API | |
run: make -C api/challenge-response check | |
- name: Check Endorsement provisioning API | |
run: make -C api/endorsement-provisioning check | |
- name: Check Discovery API | |
run: make -C api/well-known check |