From 3995430e507c6b2508b24093ffaabe454a1b3277 Mon Sep 17 00:00:00 2001 From: Alica Burlot Date: Wed, 20 Nov 2024 14:38:03 +0100 Subject: [PATCH] fix workflow --- .github/workflows/publish-client.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-client.yml b/.github/workflows/publish-client.yml index 4225f61..1d9a74d 100644 --- a/.github/workflows/publish-client.yml +++ b/.github/workflows/publish-client.yml @@ -28,6 +28,12 @@ jobs: - name: Install Poetry uses: snok/install-poetry@v1 + #---------------------------------------------- + # install dependencies if cache does not exist + #---------------------------------------------- + - name: Install dependencies + run: poetry install --no-interaction --without dev + #---------------------------------------------- # add only pytest for tests (not the full dev dependencies) #---------------------------------------------- @@ -40,12 +46,6 @@ jobs: - name: Add pytest-cov run: poetry run pip install pytest-cov - #---------------------------------------------- - # add only geopandas for tests (not the full dev dependencies) - #---------------------------------------------- - - name: Add geopandas - run: poetry run pip install geopandas - #---------------------------------------------- # run test suite #----------------------------------------------