From f3f87e7078e1f880272fbf3fa7c690b51b6f5683 Mon Sep 17 00:00:00 2001 From: Sietze van Buuren Date: Tue, 26 Nov 2024 20:00:13 +0100 Subject: [PATCH] style: remove unnecessary linebreaks Signed-off-by: Sietze van Buuren --- .github/workflows/test-and-lint.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-and-lint.yaml b/.github/workflows/test-and-lint.yaml index 5284b92..461b31e 100644 --- a/.github/workflows/test-and-lint.yaml +++ b/.github/workflows/test-and-lint.yaml @@ -34,8 +34,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install the project - run: | - uv sync + run: uv sync # Commented out because linter rules violations are not fixed yet # - name: Lint with ruff @@ -43,5 +42,4 @@ jobs: # uv run ruff check ${{ github.event.repository.name }} - name: Test with pytest - run: | - uv run pytest -v -s + run: uv run pytest -v -s