There was an error while loading. Please reload this page.
1 parent 7fcd759 commit 9041ba9Copy full SHA for 9041ba9
1 file changed
.github/workflows/kapture-main.yml
@@ -26,11 +26,16 @@ jobs:
26
cache: pip
27
cache-dependency-path: pyproject.toml
28
29
- - name: Install dependencies
+ - name: Install system dependencies
30
run: |
31
- python -m pip install --upgrade pip
32
- pip install flake8 pytest
33
- make install
+ sudo apt-get update
+ sudo apt-get install -y pandoc asciidoctor
+
34
+ - name: Install python dependencies
35
+ run: |
36
+ python -m pip install --upgrade pip
37
+ python -m pip install flake8 pytest
38
+ make install
39
40
- name: Lint with flake8
41
0 commit comments