From dcadcd1d5366760cb35d6ec2920fd0676dbc1670 Mon Sep 17 00:00:00 2001 From: Anelio Alvarez Date: Wed, 8 Nov 2023 04:11:32 -0300 Subject: [PATCH] se cachean las dependencias de poetry --- .github/workflows/testing-ci.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing-ci.yaml b/.github/workflows/testing-ci.yaml index e41103f..6432678 100644 --- a/.github/workflows/testing-ci.yaml +++ b/.github/workflows/testing-ci.yaml @@ -13,10 +13,14 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Install dependencies - run: | - pip install poetry - poetry install + - name: Install and caching poetry dependencies + run: pipx install poetry + + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + cache: "poetry" + - run: poetry install - name: Test Game module run: |