diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 5e3747f..7272151 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -8,14 +8,15 @@ jobs: steps: - name: Copia os arquivos do repo uses: actions/checkout@v3 + + - name: Instalar Poetry + run: pipx install poetry - name: Instalar o python uses: actions/setup-python@v4 with: python-version: '3.11.1' - - - name: Instalar Poetry - run: pip install poetry + cache: 'poetry' - name: Instalar dependĂȘncias do projeto run: poetry install --without doc