Bump mkdocs-material from 9.5.7 to 9.5.13 #30
Workflow file for this run
This file contains 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
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 |