File tree Expand file tree Collapse file tree 1 file changed +15
-11
lines changed Expand file tree Collapse file tree 1 file changed +15
-11
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- name : Checkout
11
- uses : actions/checkout@main
11
+ uses : actions/checkout@v3.1.0
12
12
with :
13
- fetch-depth : 0 # otherwise, you will failed to push refs to dest repo
14
-
13
+ fetch-depth : 0
14
+
15
15
- name : Set up Python 3.
16
- uses : actions/setup-python@v3
16
+ uses : actions/setup-python@v4
17
17
with :
18
18
python-version : 3.9
19
19
20
+ - name : Install Poetry
21
+ uses : snok/install-poetry@v1
22
+ with :
23
+ version : 1.3.2
24
+
25
+ - name : install
26
+ run : poetry install --with docs --all-extras
27
+
20
28
- name : Install dependencies for nbsphinx
21
29
run : |
22
30
sudo apt update
23
31
sudo apt install -y pandoc
32
+
24
33
- name : Run Pandoc
25
34
run : |
26
- pandoc --version
27
- - name : Install Poetry.
28
- uses : snok/install-poetry@v1.3
29
-
30
- - name : install
31
- run : poetry install
32
-
35
+ pandoc --version
36
+
33
37
- name : Build documentation.
34
38
run : |
35
39
mkdir gh-pages
You can’t perform that action at this time.
0 commit comments