Skip to content

Commit 1d356a5

Browse files
committed
Address comments by @localheinzwq
1 parent e5d0cad commit 1d356a5

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,41 @@ name: CI
1111
jobs:
1212
build:
1313
name: Build
14+
1415
runs-on: ubuntu-latest
16+
1517
steps:
1618
- name: "Checkout"
1719
uses: actions/checkout@v2
20+
1821
- name: "Set up Python 3.x"
1922
uses: actions/setup-python@v1
2023
with:
2124
python-version: '3.7' # Semantic version range syntax or exact version of a Python version
25+
2226
- name: "Display Python version"
2327
run: python -c "import sys; print(sys.version)"
28+
2429
- name: "Install Sphinx dependencies"
2530
run: sudo apt-get install python-dev build-essential
31+
2632
- name: "Install Sphinx"
2733
run: pip install --user sphinx
28-
- name: "INstall custom requirements via pip"
34+
35+
- name: "Install custom requirements via pip"
2936
run: pip install -r _build/.requirements.txt
37+
3038
- name: "Build documentation"
3139
run: make -C _build SPHINXOPTS=-nW html
3240
doctor-rst:
3341
name: DOCtor-RST
42+
3443
runs-on: ubuntu-latest
44+
3545
steps:
3646
- name: "Checkout"
3747
uses: actions/checkout@v2
48+
3849
- name: "Run DOCtor-RST"
3950
uses: docker://oskarstark/doctor-rst
4051
with:

0 commit comments

Comments
 (0)