We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94591d3 commit 706f5f8Copy full SHA for 706f5f8
.github/workflows/ci.yml
@@ -66,15 +66,12 @@ jobs:
66
- name: Cache poetry
67
uses: actions/cache@v4
68
with:
69
- path: ~/.cache/poetry # This path is specific to Ubuntu
+ path: .venv
70
# Look to see if there is a cache hit for the corresponding requirements file
71
key: ${{ matrix.platform }}-${{ matrix.python }}-pyproject.toml-${{ hashFiles('pyproject.toml') }}
72
- restore-keys: |
73
- ${{ matrix.platform }}-${{ matrix.python }}-pyproject.toml-${{hashFiles('pyproject.toml')}}}
74
-
75
76
- name: Install Python dependencies
77
- run: poetry install -q
+ run: poetry install
78
79
- name: Install Redis Server
80
working-directory: redis
0 commit comments