Skip to content

Commit 9041ba9

Browse files
author
jmorat
committed
install pandoc and asciidoctor on github workflow.
1 parent 7fcd759 commit 9041ba9

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/kapture-main.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,16 @@ jobs:
2626
cache: pip
2727
cache-dependency-path: pyproject.toml
2828

29-
- name: Install dependencies
29+
- name: Install system dependencies
3030
run: |
31-
python -m pip install --upgrade pip
32-
pip install flake8 pytest
33-
make install
31+
sudo apt-get update
32+
sudo apt-get install -y pandoc asciidoctor
33+
34+
- name: Install python dependencies
35+
run: |
36+
python -m pip install --upgrade pip
37+
python -m pip install flake8 pytest
38+
make install
3439
3540
- name: Lint with flake8
3641
run: |

0 commit comments

Comments
 (0)