Skip to content

Commit

Permalink
ci: remove venv cache
Browse files Browse the repository at this point in the history
  • Loading branch information
maxb2 committed Sep 11, 2023
1 parent e88e8ce commit 869cde1
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,6 @@ jobs:
with:
poetry-version: 1.5

- name: Setup a local virtual environment (if no poetry.toml file)
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v3
name: Define a cache for the virtual environment
with:
path: ./.venv
key: venv-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
restore-keys: |
venv-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
venv-${{ matrix.os }}-${{ matrix.python-version }}
- name: Install Dependencies
run: poetry install -n --all-extras

Expand Down

0 comments on commit 869cde1

Please sign in to comment.