From d31406c8ba1a97c49707e070a0ed1590dbf180c7 Mon Sep 17 00:00:00 2001 From: Waldek Herka Date: Tue, 15 Apr 2025 20:01:27 +0200 Subject: [PATCH] fix(ci): correct indentation in GitHub Actions workflow - Fix YAML indentation for Install dependencies step - Ensure CI workflow parses correctly --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c6e40f..483951e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,9 +31,9 @@ jobs: run: uv sync --all-extras --dev - name: Install dependencies - run: | - uv pip install -e ".[test]" # Note the added test extra - uv pip install pytest pytest-cov pytest-mock + run: | + uv pip install -e ".[test]" # Note the added test extra + uv pip install pytest pytest-cov pytest-mock - name: Unit tests env: