Skip to content

Commit 9cf0261

Browse files
committed
Remove shell-specific source command
1 parent 6567a74 commit 9cf0261

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,10 @@ jobs:
99
steps:
1010
- name: Check out repository
1111
uses: actions/checkout@v4
12-
- name: Setup python
13-
uses: actions/setup-python@v5
14-
with:
15-
python-version: '3.x'
1612
- name: Prepare system
1713
run: |
18-
python3 -m venv .venv && source .venv/bin/activate
14+
apt-get update && apt-get install -y python3-venv
15+
python3 -m venv .venv && . .venv/bin/activate
1916
pip install poppler-utils pandoc-fignos
2017
- name: Build
2118
run: |

0 commit comments

Comments
 (0)