File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " *"
7
+ branches : [ main, master ]
8
+
9
+ jobs :
10
+ deploy :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - name : Set up Python
15
+ uses : actions/setup-python@v2
16
+ with :
17
+ python-version : ' 3.9'
18
+ - name : Install dependencies
19
+ run : |
20
+ python -m pip install --upgrade pip
21
+ pip install setuptools wheel
22
+ pip install -r requirements-dev.txt
23
+ - name : Deploy to GitHub Pages
24
+ run : |
25
+ mkdocs gh-deploy
Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
deploy :
9
-
10
9
runs-on : ubuntu-latest
11
-
12
10
steps :
13
11
- uses : actions/checkout@v2
14
12
- name : Set up Python
Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build-windows :
11
11
runs-on : windows-latest
12
-
13
12
steps :
14
13
- uses : actions/checkout@v2
15
14
- name : Set up Python 3.9
27
26
28
27
build-linux :
29
28
runs-on : ubuntu-latest
30
-
31
29
steps :
32
30
- uses : actions/checkout@v2
33
31
- name : Set up Python 3.9
You can’t perform that action at this time.
0 commit comments