First class network stack support #1011
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: Stackinator CI | |
| on: [push, pull_request] | |
| jobs: | |
| unittestpy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install uv | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| - name: Validate Schemas | |
| run: | | |
| errors=0 | |
| for schema in `find stackinator/schema -type f -name "*.json"`; do | |
| echo $schema | |
| uvx check-jsonschema --check-metaschema $schema | |
| errors=$(($errors + $?)) | |
| done | |
| exit $errors | |
| - name: Generic Unittests | |
| run: | | |
| ./test_stackinator.py |