From d93e834aaf49e22661602cc855e49f5110140c98 Mon Sep 17 00:00:00 2001 From: Henrique Date: Thu, 12 Dec 2024 09:43:40 -0300 Subject: [PATCH] Try to fix poetry cache (CI) --- .github/workflows/ci.yaml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b64a82c..a38753b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,18 +25,10 @@ jobs: python-version: ${{ matrix.python-version }} cache: "poetry" - - name: Cache Poetry dependencies - uses: actions/cache@v3 - with: - path: ~/.cache/pypoetry - key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} - restore-keys: | - ${{ runner.os }}-poetry- - - name: Install Poetry - run: | - python -m pip install --upgrade pip - pip install --upgrade poetry + uses: snok/install-poetry@v1 + with: + version: latest - name: Install dependencies with Poetry and StreamSnapper extras run: poetry install --extras "all"