add new workflow for build mkdocs on PRs (#186)

This commit is contained in:
Sanket Patel
2025-12-24 14:02:36 -08:00
committed by GitHub
parent a7dd9018c5
commit b98de23328
2 changed files with 28 additions and 0 deletions

27
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Build mkdocs
on:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build
run: |
mkdocs build

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.DS_Store .DS_Store
.venv .venv
site/ site/
.vscode/