diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 840760e..fafff67 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,15 +59,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Load cached venv - id: cached-venv - uses: actions/cache@v4 - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/uv.lock') }} - - name: Install dependencies - if: steps.cached-venv.outputs.cache-hit != 'true' run: uv sync --all-extras --dev - name: Run tests for coverage @@ -117,15 +109,7 @@ jobs: with: python-version: ${{ env.MINIMUM_PYTHON_VERSION }} - - name: Load cached venv - id: cached-venv - uses: actions/cache@v4 - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/uv.lock') }} - - name: Install dependencies - if: steps.cached-venv.outputs.cache-hit != 'true' run: uv sync --all-extras --dev #---------------------------------------------- # Run tests and upload coverage