Skip to content

Commit e3fddbe

Browse files
committed
WIP commit
1 parent 9ff0129 commit e3fddbe

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.github/workflows/build-docs.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build Docs
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
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+
run: |
31+
mkdocs build
32+
llms-txt
33+
mkdocs gh-deploy --dirty

docs/requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
mkdocs
2+
mkdocs-material
3+
mkdocs-git-revision-date-localized-plugin>=1.2.4
4+
llms-txt-action

0 commit comments

Comments
 (0)