Update/abhijeet allu description #2353
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 | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-json-validation: | |
| runs-on: oracle-2cpu-8gb-x86-64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '>= 3.14' | |
| pip-install: check-jsonschema yamllint | |
| - name: Validate JSON | |
| run: check-jsonschema --schemafile schema.json people.json | |
| - name: Validate YAML | |
| run: yamllint -s config.yaml |