From 79bec6626c1e84459b933a836c82b56388c8fc42 Mon Sep 17 00:00:00 2001 From: franchb Date: Fri, 23 Aug 2024 14:01:44 +0300 Subject: [PATCH] add install Poetry action --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c2f5e79..c4f85bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,16 +48,19 @@ jobs: #---------------------------------------------- - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + working-directory: ${{ github.workspace }} run: poetry install --no-interaction --no-root #---------------------------------------------- # install your root project, if required #---------------------------------------------- - name: Install project run: poetry install --no-interaction + working-directory: ${{ github.workspace }} - uses: actions/checkout@v4 with: python-version: ${{ matrix.python-version }} - name: Run linter + working-directory: ${{ github.workspace }} run: make lint tests_linux: