Skip to content

Commit

Permalink
Merge pull request #120 from kabilar/test-build
Browse files Browse the repository at this point in the history
Add GitHub Action to test the build of the mkdocs site
  • Loading branch information
yarikoptic authored Mar 29, 2024
2 parents 1e45f18 + ed68af8 commit 51da59a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build MkDocs
on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1

- name: Install version of Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install requirements
run: pip install -r requirements.txt

- name: Build docs
run: mkdocs build

0 comments on commit 51da59a

Please sign in to comment.