We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbea5ea commit 0e08871Copy full SHA for 0e08871
.github/workflows/build.yml
@@ -0,0 +1,15 @@
1
+name: Build MkDocs
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-python@v5
12
+ with:
13
+ python-version: 3.x
14
+ - run: pip install -r requirements.txt
15
+ - run: mkdocs build
.github/workflows/main.yml
+name: Publish docs via GitHub Pages
+ push:
+ deploy:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ - run: mkdocs gh-deploy --force
0 commit comments