From 43b002660aee48fb2f28aa47ce41d85f96eb98e4 Mon Sep 17 00:00:00 2001 From: Salomon Popp Date: Tue, 9 Apr 2024 17:04:15 +0200 Subject: [PATCH] Fix order of CI steps --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ef5fd4c..826c1f8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,12 +33,12 @@ jobs: poetry-version: ${{ env.poetry-version }} working-directory: ${{ env.working-directory }} - - name: Check Poetry config and lockfile - run: poetry run pre-commit run poetry-check --all-files - - name: Install dependencies run: poetry install --no-interaction + - name: Check Poetry config and lockfile + run: poetry run pre-commit run poetry-check --all-files + - name: Lint (ruff) run: | if [[ "$RUNNER_OS" == "Linux" && "${{ matrix.python-version }}" == "3.10" ]]