Skip to content

Commit

Permalink
Simplify dependency installation in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Václav Dohnal committed Jan 11, 2025
1 parent 9bdc340 commit 7d68f40
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,7 @@ jobs:
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install -vv --no-root
- uses: actions/cache@v4
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ matrix.python-versions }}-${{ hashFiles('poetry.lock') }}
poetry install -vv --no-interaction
- name: Install Django
run: |
Expand Down

0 comments on commit 7d68f40

Please sign in to comment.