Skip to content

Update mkdocs-material requirement from ~=9.5.29 to ~=9.6.6 #1652

Update mkdocs-material requirement from ~=9.5.29 to ~=9.6.6

Update mkdocs-material requirement from ~=9.5.29 to ~=9.6.6 #1652

Workflow file for this run

name: Python tests
on:
pull_request:
push:
branches:
- main
jobs:
min_build:
name: Run Code Checks and Tests with Minimum Dependencies
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
uv pip install . --system
uv pip install .[minimal_requirements] --system
uv pip install .[dev] --system
- name: Run checks with ruff
run: |
ruff check .
- name: Check if code is formatted correctly
run: |
ruff format . --check
- name: Run type checks with mypy
run: |
mypy -p blueprints
- name: Run tests with pytest
run: |
pytest --pspec tests/ --verbose