From 2cb06a0e3146bc503b177bc01b289ae0d463c8e6 Mon Sep 17 00:00:00 2001 From: JessicaTegner Date: Sun, 22 Dec 2024 13:12:37 +0100 Subject: [PATCH] running python from venv directly --- .github/workflows/ci.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9f4eb20..8c2ff30 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,13 +34,11 @@ jobs: - name: Install and configure UV run: pip3 install --upgrade uv setuptools - name: Install dependencies - run: | - uv sync --dev - source .venv/bin/activate + run: uv sync --dev - name: Download pandoc - run: python setup_binary.py download_pandoc + run: ./.venv/scripts/python setup_binary.py download_pandoc - name: run tests - run: python tests.py + run: ./.venv/scripts/python tests.py builder_pypandoc: needs: [test]