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 709829c commit 99e0929Copy full SHA for 99e0929
.github/workflows/ci.yaml
@@ -58,3 +58,28 @@ jobs:
58
run: |
59
source venv/bin/activate
60
python3.10 -m mypy .
61
+
62
+ docs:
63
+ runs-on: ubuntu-latest
64
+ steps:
65
+ - uses: actions/checkout@v1
66
+ - name: Set up Python
67
+ uses: actions/setup-python@v1
68
+ with:
69
+ python-version: "3.10"
70
+ - name: Install dependencies
71
+ run: |
72
+ python3.10 -m venv venv
73
+ source venv/bin/activate
74
+ pip3 install --upgrade pip
75
+ python3.10 -m pip install -r requirements.txt
76
+ python3.10 setup.py install
77
+ - name: Generate Reference Docs
78
79
+ mkdir ./docs/build
80
+ ./docs/generate.sh --out=./docs/build/ --pypath=src/
81
+ - uses: actions/upload-artifact@v3
82
+ name: Upload Docs Preview
83
84
+ name: reference-docs
85
+ path: ./docs/build/
0 commit comments