chore(deps): update mkdocs-material requirement from >=9.5 to >=9.7.6 #56
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: 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5.3.0 | |
| 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 |