From 3ffe20cfafb28c62409badd930a20b62848af1bb Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Sun, 21 Jul 2024 12:36:32 +0100 Subject: [PATCH] Update action --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a078b58e..223eb3e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,10 +15,10 @@ jobs: version: '0.35.0' - name: Install Dependencies run: rye sync - - name: Activate Virtual Environment - run: source .venv/bin/activate - name: Run Tests - run: make test + run: | + source .venv/bin/activate + make test - name: Attach Code Coverage uses: py-cov-action/python-coverage-comment-action@v3.25