From b98de23328fef308b3245fe96699d9fa38af23a2 Mon Sep 17 00:00:00 2001 From: Sanket Patel Date: Wed, 24 Dec 2025 14:02:36 -0800 Subject: [PATCH] add new workflow for build mkdocs on PRs (#186) --- .github/workflows/build.yml | 27 +++++++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 28 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6507432 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 diff --git a/.gitignore b/.gitignore index 58874ed..6904420 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .DS_Store .venv site/ +.vscode/