Skip to content

Commit

Permalink
Build docs on push
Browse files Browse the repository at this point in the history
without deploying, simply to test that the build process has not been broken by a commit
  • Loading branch information
GeckoEidechse committed Sep 19, 2024
1 parent bc25c01 commit 7f180b8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Deploy

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: 3.x

- name: Install dependencies and build
run: |
python3 -m pip install -U poetry
python3 -m poetry install
python3 -m poetry run mkdocs build

0 comments on commit 7f180b8

Please sign in to comment.