Skip to content

First class network stack support #1007

First class network stack support

First class network stack support #1007

Workflow file for this run

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