Catalog: add the RFC 9449 multi-header invalid_dpop_proof carve-out #6
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: pip | |
| cache-dependency-path: requirements-dev.txt | |
| - name: Install dev dependencies | |
| run: pip install -r requirements-dev.txt | |
| - name: yamllint | |
| run: yamllint . | |
| - name: validate catalog | |
| run: python scripts/validate_catalog.py | |
| - name: yamlfix (check only) | |
| run: YAMLFIX_CONFIG_PATH=.yamlfix.toml yamlfix --check oauth-sdk-conformance-catalog.yaml |