Add author and notebook registry for cookbooks (#237) #6
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: Verify Authors | |
| on: | |
| pull_request: | |
| paths: | |
| - 'authors.yaml' | |
| - 'registry.yaml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'authors.yaml' | |
| - 'registry.yaml' | |
| jobs: | |
| verify-urls: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| pip install pyyaml requests jsonschema | |
| - name: Verify authors and registry | |
| run: | | |
| python .github/scripts/verify_registry.py |