Skip to content

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

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

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

# This workflow will make sure that incoming changes via pull requests
# will not decrease the code coverage to less than 100%.
name: Check code coverage is 100%
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
name: Code coverage with python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: install uv
uses: astral-sh/setup-uv@v5
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: uv pip install -e .[dev] --system
- name: Check code coverage is 100%
run: |
pytest --cov=./blueprints --cov-report term-missing:skip-covered --cov-fail-under=100