From f4575344f078467d46f60c609f60320c1d5ad7f6 Mon Sep 17 00:00:00 2001 From: Austin Godber Date: Tue, 23 Jul 2024 07:54:31 -0700 Subject: [PATCH] add mkdocs --- .gitea/workflows/test.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 59c1917..4fbac9a 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -25,4 +25,10 @@ jobs: pip install -r requirements.txt - name: Run tests run: | - pytest \ No newline at end of file + pytest + - name: Build docs with mkdocs + run: | + pip install mkdocs mkdocs-material mkdocs-material-extensions + cd docs + mkdocs build + find site \ No newline at end of file