Skip to content

Commit 61f3bf1

Browse files
authored
Fix syntax errors in the docs workflow (#114)
1 parent 88642a8 commit 61f3bf1

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/build-docs.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,13 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
21-
- Name: Install pandoc
22-
with:
23-
sudo apt-get install pandoc
24-
2520
- name: Set up Python ${{ matrix.python-version }}
2621
uses: actions/setup-python@v4
2722
with:
2823
python-version: ${{ matrix.python-version }}
29-
- run: pip install tox
24+
- run: |
25+
sudo apt-get install pandoc
26+
pip install tox
3027
31-
- name: run sphinx docs build
28+
- name: Build sphinx docs
3229
run: tox -e docs

0 commit comments

Comments
 (0)