Bump the non-major-versions group with 3 updates #270
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: MkDocs Build | |
permissions: | |
contents: write # only for delete-branch option | |
issues: write | |
pull-requests: write | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 6 * * 6' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download source | |
uses: actions/[email protected] | |
- name: Install Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: pip install --no-deps -r docs/requirements.txt | |
- name: Build site | |
run: mkdocs build |