From 42f51f0812efdcad547f4ad7f1af44d07956f76d Mon Sep 17 00:00:00 2001 From: Jacob Jo Date: Sat, 22 Feb 2025 00:48:41 +0000 Subject: [PATCH] neater run and name --- .github/workflows/ci_linting.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_linting.yml b/.github/workflows/ci_linting.yml index ce0f4073ada..0d2dee62bf0 100644 --- a/.github/workflows/ci_linting.yml +++ b/.github/workflows/ci_linting.yml @@ -82,14 +82,11 @@ jobs: - name: Set up uv uses: astral-sh/setup-uv@v5 - name: Install dependencies - run: | - cd tests/integrationv2 - pip install . + run: pip install tests/integrationv2 - name: Run Ruff formatting check id: ruff_format - run: | - cd tests/integrationv2 - ruff format --check . + run: ruff format --check tests/integrationv2 + continue-on-error: true continue-on-error: true - name: Check exit code if: steps.ruff_format.outcome == 'failure'