From 1313865a653161a696fc9abac7f0d51da6e1eb91 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 13 Nov 2023 20:12:09 -0300 Subject: [PATCH] cache poetry --- .github/actions/prepare/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 91d4204f..85232716 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -12,15 +12,15 @@ inputs: runs: using: "composite" steps: + - name: Set up Poetry ${{ inputs.poetry-version }} + uses: abatilo/actions-poetry@v2 + with: + poetry-version: ${{ inputs.poetry-version }} - name: Set up Python ${{ inputs.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }} cache: "poetry" - - name: Set up Poetry ${{ inputs.poetry-version }} - uses: abatilo/actions-poetry@v2 - with: - poetry-version: ${{ inputs.poetry-version }} - name: Install dependencies run: | poetry install --extras pgsql