Skip to content

Commit

Permalink
gh: always build even if we think there's a cache hit
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Sep 19, 2024
1 parent adb9c7f commit a8bceba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --no-plugins

# Install node and yarn in order to build the front end during packaging
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
path: .venv
key: venv-tox-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --with test,docs --no-plugins

# Grab the built artifacts to ensure we're testing what we eventually publish
Expand Down

0 comments on commit a8bceba

Please sign in to comment.