1 parent 7e1c002 commit dabafb5Copy full SHA for dabafb5
1 file changed
.github/workflows/build.yaml
@@ -23,7 +23,15 @@ jobs:
23
- name: Setup Poetry
24
uses: threeal/setup-poetry-action@v1.0.0
25
26
+ - name: Cache deps
27
+ id: cache_deps
28
+ uses: actions/cache@v3.3.2
29
+ with:
30
+ path: .venv
31
+ key: poetry-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
32
+
33
- name: Install deps
34
+ if: steps.cache_deps.outputs.cache-hit != 'true'
35
run: poetry install --with dev
36
37
- name: Check format
0 commit comments