Skip to content

Commit

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

0 comments on commit 1ef30f0

Please sign in to comment.