8000 Formatting + name steps · symfony/symfony-docs@5b2a1ca · GitHub
[go: up one dir, main page]

Skip to content

Commit 5b2a1ca

Browse files
committed
Formatting + name steps
1 parent fb25022 commit 5b2a1ca

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,29 @@ jobs:
1313
name: Build
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
- name: Set up Python 3.x
16+
- name: "Checkout"
17+
uses: actions/checkout@v2
18+
- name: "Set up Python 3.x"
1819
uses: actions/setup-python@v1
1920
with:
2021
python-version: '3.7' # Semantic version range syntax or exact version of a Python version
21-
- name: Display Python version
22+
- name: "Display Python version"
2223
run: python -c "import sys; print(sys.version)"
23-
- run: sudo apt-get install python-dev build-essential
24-
- run: pip install --user sphinx
25-
- run: pip install -r _build/.requirements.txt
26-
- run: make -C _build SPHINXOPTS=-nW html
24+
- name: "Install Sphinx dependencies"
25+
run: sudo apt-get install python-dev build-essential
26+
- name: "Install Sphinx"
27+
run: pip install --user sphinx
28+
- name: "INstall custom requirements via pip"
29+
run: pip install -r _build/.requirements.txt
30+
- name: "Build documentation"
31+
run: make -C _build SPHINXOPTS=-nW html
2732
doctor-rst:
2833
name: DOCtor-RST
2934
runs-on: ubuntu-latest
3035
steps:
31-
- uses: actions/checkout@v2
32-
- name: DOCtor-RST
33-
uses: docker://oskarstark/doctor-rst
34-
with:
35-
args: --short
36+
- name: "Checkout"
37+
uses: actions/checkout@v2
38+
- name: "Run DOCtor-RST"
39+
uses: docker://oskarstark/doctor-rst
40+
with:
41+
args: --short

0 commit comments

Comments
 (0)
0