8000 Address comments by @localheinzwq · symfony/symfony-docs@9144aab · GitHub
[go: up one dir, main page]

Skip to content

Commit 9144aab

Browse files
committed
Address comments by @localheinzwq
1 parent 5b2a1ca commit 9144aab

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,42 @@ 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
40+
3241
doctor-rst:
3342
name: DOCtor-RST
43+
3444
runs-on: ubuntu-latest
45+
3546
steps:
3647
- name: "Checkout"
3748
uses: actions/checkout@v2
49+
3850
- name: "Run DOCtor-RST"
3951
uses: docker://oskarstark/doctor-rst
4052
with:

0 commit comments

Comments
 (0)
0