ci: Adding validate-manfiest yaml #10
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 manifest.json | |
| on: push | |
| defaults: | |
| run: | |
| shell: python | |
| working-directory: ./scripts | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Load and Validate | |
| run: | |
| pip3 install requests | |
| python validate.py |