Skip to content

Commit

Permalink
fixup! .github/workflows: add lint/format CI
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed Aug 2, 2024
1 parent 4787a22 commit fcdf8ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uv venv
uv pip compile pyproject.toml --extra ci | uv pip install -r -
- name: ruff check
run: ruff check --output-format=github .
run: .venv/bin/ruff check --output-format=github .
format:
runs-on: ubuntu-latest
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
uv venv
uv pip compile pyproject.toml --extra ci | uv pip install -r -
- name: ruff format
run: ruff format --diff .
run: .venv/bin/ruff format --diff .
# test:
# runs-on: ubuntu-latest
# steps:
Expand Down

0 comments on commit fcdf8ee

Please sign in to comment.