chore(deps-dev): bump pymdown-extensions from 10.21.3 to 11.0 #716
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: Python tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| paths: | |
| - 'boaviztapi/**' | |
| - 'tests/**' | |
| - 'poetry.lock' | |
| - 'pyproject.toml' | |
| pull_request: | |
| paths: | |
| - 'boaviztapi/**' | |
| - 'tests/**' | |
| - 'Makefile' | |
| - 'poetry.lock' | |
| - 'pyproject.toml' | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| version: ["3.11", "3.12", "3.13", "3.14"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.version }} | |
| - name: Install poetry | |
| run: python -m pip install --upgrade poetry wheel | |
| - name: Install dependencies | |
| run: make install | |
| - name: Run test suite | |
| run: make test | |
| test-e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.14 | |
| - name: Install poetry | |
| run: python -m pip install --upgrade poetry wheel | |
| - name: Install dependencies | |
| run: make install | |
| - name: Run tests | |
| run: make test-e2e |