From 7f180b836f80937bae00bcb9e1769b16a9d69567 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Thu, 19 Sep 2024 15:05:48 +0200 Subject: [PATCH] Build docs on push without deploying, simply to test that the build process has not been broken by a commit --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 00000000..61223673 --- /dev/null +++ b/.github/workflows/build.yml @@ -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