Skip to content

chore(deps): update dependency mkdocs-material to v9.5.39 #2267

chore(deps): update dependency mkdocs-material to v9.5.39

chore(deps): update dependency mkdocs-material to v9.5.39 #2267

Workflow file for this run

---
name: lint and other checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up Python
id: setup-python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a # v1
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run pre-commit
run: |
poetry run pre-commit run --all-files