Skip to content

Bump mkdocs-material from 9.5.7 to 9.5.13 #30

Bump mkdocs-material from 9.5.7 to 9.5.13

Bump mkdocs-material from 9.5.7 to 9.5.13 #30

Workflow file for this run

name: Build Docs
on:
pull_request:
branches:
- main
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
with:
fetch-depth: "0"
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.x
cache: "pip" # caching pip dependencies
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build documentation
run: TZ=UTC mkdocs build