Skip to content

feat: implement Level 1/2 conformance tests (#8) #19

feat: implement Level 1/2 conformance tests (#8)

feat: implement Level 1/2 conformance tests (#8) #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package and test deps
run: pip install -e ".[test]"
- name: Level 0 conformance (schema + structural)
run: python -m pytest -v -m "level0 or negative" --tb=short
- name: Unit tests (modules and CLI)
run: python -m pytest tests/unit/ -v --tb=short
- name: Full suite
run: python -m pytest -v --tb=short