From bb8d35f09a6093a4efa3ee4ad6f9f5ebe0148ddd Mon Sep 17 00:00:00 2001 From: Radu Suciu Date: Tue, 27 Feb 2024 21:44:38 +0000 Subject: [PATCH] make sure venv is created and use sync instead of install --- .github/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f9a6406..1014f6b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -31,6 +31,7 @@ jobs: cache: true - name: Install dependencies run: | - pdm install -v --dev + pythom -m venv ${{ env.VIRTUAL_ENV }} + pdm sync --verbose --dev - name: Run tests run: python -m pytest