Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-main-page
Browse files Browse the repository at this point in the history
  • Loading branch information
GeckoEidechse authored Sep 19, 2024
2 parents f7f56ab + 747bffe commit c7a346a
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: Build

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 c7a346a

Please sign in to comment.