From 29e9ed0be33cb0a500f19f6333b80ca21916494a Mon Sep 17 00:00:00 2001 From: SlashGordon Date: Fri, 17 Nov 2023 12:04:44 +0100 Subject: [PATCH] fix: release --- .github/workflows/release.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 349064b..e354a0e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,27 +19,15 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} - - - name: Cache poetry installation - uses: actions/cache@v2 - with: - path: ~/.local - key: poetry-${{ matrix.python-version }}-${{ matrix.poetry-version }} + python-version: ${{ matrix.python-version }}∂ - name: Install Poetry uses: snok/install-poetry@v1 with: version: ${{ matrix.poetry-version }} virtualenvs-create: true virtualenvs-in-project: true - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: .venv - key: pydeps-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies - run: poetry install --no-interaction --no-root - if: steps.cache-deps.outputs.cache-hit != 'true' + run: poetry install --no-interaction - name: Run tests run: | source .venv/bin/activate