Skip to content

Commit 087a453

Browse files
authored
Merge pull request #10 from Majorfi/feat/documentation
Feat/documentation
2 parents 0e59c17 + cf88749 commit 087a453

22 files changed

Lines changed: 2184 additions & 456 deletions

.github/workflows/docs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- "docs/**"
9+
- "mkdocs.yml"
10+
- ".github/workflows/docs.yml"
11+
12+
permissions:
13+
contents: write
14+
15+
jobs:
16+
deploy:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-python@v5
21+
with:
22+
python-version: 3.x
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r docs/requirements.txt
27+
- name: Deploy to GitHub Pages
28+
run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)