From 484286deccc7bf17399da98ad517014b1dda5854 Mon Sep 17 00:00:00 2001 From: Jochem Smit Date: Wed, 4 Dec 2024 14:44:14 +0100 Subject: [PATCH] activate venv before running dont-fret --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 858f755..26b923f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,14 +22,12 @@ jobs: - name: Install uv run: pip install uv - - name: Create uv venv + - name: Create and activate venv, install package run: | uv venv - . .venv/bin/activate - - - name: Install package using uv - run: | + source .venv/bin/activate uv pip install dist/*.tar.gz + which dont-fret - name: Download test file run: | @@ -38,4 +36,5 @@ jobs: - name: Run dont fret serve run: | + source .venv/bin/activate dont-fret process tests/test_data/input/ds1/datafile_1.ptu \ No newline at end of file