Token and Authorization docs #3050
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: Validate Parameters File | |
| on: | |
| pull_request: | |
| jobs: | |
| validate-parameters: | |
| name: Validate Parameters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| cache: 'pip' | |
| python-version: '3.9' | |
| - name: Install dependencies | |
| run: pip install -r .github/scripts/validate-parameters/requirements.txt | |
| - name: Validate parameters | |
| run: python .github/scripts/validate-parameters/main.py | |
| - name: Validate default parameters | |
| run: python .github/scripts/validate-defaults/main.py |