From 9c978744393a88abdb06347781b736a8902498b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Sun, 9 Oct 2022 21:24:02 +0200 Subject: [PATCH] fix: properly cache poetry deps --- .github/workflows/instance_test.yml | 2 +- .github/workflows/mypy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/instance_test.yml b/.github/workflows/instance_test.yml index ee6ae0ba..dbc97d7b 100644 --- a/.github/workflows/instance_test.yml +++ b/.github/workflows/instance_test.yml @@ -21,7 +21,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{matrix.python-version}} - cache: 'pip' + cache: 'poetry' - name: Install and setup redis run: | diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 93bce3f2..941a55d5 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -20,7 +20,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{matrix.python-version}} - cache: 'pip' # caching pip dependencies + cache: 'poetry' - name: Install dependencies run: |