We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ff0129 commit e3fddbeCopy full SHA for e3fddbe
.github/workflows/build-docs.yml
@@ -0,0 +1,33 @@
1
+name: Build Docs
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ name: Tests
14
+ runs-on: ubuntu-22.04
15
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v3
19
20
+ - name: Set up Python
21
+ uses: actions/setup-python@v4
22
+ with:
23
+ python-version: 3.10
24
25
+ - name: Install the package and dependencies
26
+ run: |
27
+ pip install -r docs/requirements.txt
28
29
+ - name: Build, make LLM friendly and deploy docs
30
31
+ mkdocs build
32
+ llms-txt
33
+ mkdocs gh-deploy --dirty
docs/requirements.txt
@@ -0,0 +1,4 @@
+mkdocs
+mkdocs-material
+mkdocs-git-revision-date-localized-plugin>=1.2.4
+llms-txt-action
0 commit comments