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 1726ba4 commit cf5e3dcCopy full SHA for cf5e3dc
.github/workflows/ci.yml
@@ -0,0 +1,22 @@
1
+name: test and deploy docs
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+permissions:
7
+ contents: write
8
+jobs:
9
+ ci:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Configure Git Credentials
14
+ run: |
15
+ git config user.name github-actions[bot]
16
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
17
+ - uses: actions/setup-python@v5
18
+ with:
19
+ python-version: 3.x
20
+ - run: pip install -e .\[all,docs\]
21
+ - run: pytest -vv --cov=src tests/
22
+ - run: mkdocs gh-deploy --force
0 commit comments