From 99ebc53f61cd46ecb3895a0b8df653d9efb2d1ea Mon Sep 17 00:00:00 2001 From: Markus Meissner Date: Tue, 26 Nov 2024 01:33:46 +0100 Subject: [PATCH] ci: fix venv creation --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e4751636..59e3e2e2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Create virtual environment - run: make venv + run: | + python -m venv venv + venv/bin/pip3 install -r requirements.txt - name: Syntax check run: | . venv/bin/activate @@ -26,7 +28,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Create virtual environment - run: make venv + run: | + python -m venv venv + venv/bin/pip3 install -r requirements.txt - name: Build documentation run: | . venv/bin/activate