build(deps-dev): bump pymdown-extensions from 10.20.1 to 10.21 #408
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
| # This workflow will install Python dependencies, run tests and lint with a single version of Python | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: Continuous Integration (Python) | |
| on: push | |
| jobs: | |
| build: | |
| # environment: project_name | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.14"] # Add more Python versions to test here | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: | | |
| uv sync --all-groups | |
| - name: Lint with ruff | |
| run: uv run ruff check . --output-format=github | |
| - name: Check types with ty | |
| run: uv run ty check . --output-format=github | |
| - name: Test with pytest | |
| run: uv run pytest . | |
| - name: Coveralls | |
| env: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| uses: coverallsapp/[email protected] | |
| - name: Check docs | |
| run: uv run mkdocs build |