name: CI on: push: branches: [main] pull_request: jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: ["3.10", "3.11", "3.12"] steps: - name: Check out repository uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Upgrade pip run: python -m pip install --upgrade pip - name: Install package run: pip install -e . - name: Install test tooling run: pip install pytest - name: Run test suite run: pytest -q - name: Run milestone-2 conformance vectors run: python conformance/run_conformance.py - name: Run end-to-end demo (scripted, non-interactive) run: python demo/run_demo.py