Skip to content

Bump mkdocs-material from 9.4.3 to 9.5.2 #221

Bump mkdocs-material from 9.4.3 to 9.5.2

Bump mkdocs-material from 9.4.3 to 9.5.2 #221

Workflow file for this run

name: build gh pages
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: build mkdocs
run: |
ln -sf ${GITHUB_WORKSPACE}/README.md ${GITHUB_WORKSPACE}/docs/index.md
mkdocs build