We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6567a74 commit 9cf0261Copy full SHA for 9cf0261
.github/workflows/build.yml
@@ -9,13 +9,10 @@ jobs:
9
steps:
10
- name: Check out repository
11
uses: actions/checkout@v4
12
- - name: Setup python
13
- uses: actions/setup-python@v5
14
- with:
15
- python-version: '3.x'
16
- name: Prepare system
17
run: |
18
- python3 -m venv .venv && source .venv/bin/activate
+ apt-get update && apt-get install -y python3-venv
+ python3 -m venv .venv && . .venv/bin/activate
19
pip install poppler-utils pandoc-fignos
20
- name: Build
21
0 commit comments