WIP: JSON validation POC #2
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: Validation Unit Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| validation_unit_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| pip install pydantic pytest | |
| - name: Run validation unit tests | |
| run: | | |
| pytest |