Skip to content

Commit

Permalink
removed pip install and added working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
johubertj committed Feb 22, 2025
1 parent 42f51f0 commit c26a2c9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci_linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,10 @@ jobs:
uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: pip install tests/integrationv2
- name: Run Ruff formatting check
id: ruff_format
run: ruff format --check tests/integrationv2
continue-on-error: true
run: ruff format --check .
working-directory: tests/integrationv2 # Set the working directory
continue-on-error: true
- name: Check exit code
if: steps.ruff_format.outcome == 'failure'
Expand Down

0 comments on commit c26a2c9

Please sign in to comment.