Skip to content

Commit

Permalink
ci: Update ci to work with uv
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethEnevoldsen committed Dec 23, 2024
1 parent d6298dd commit 46c4af6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ static-type-check:

lint:
@echo "--- 🧹 Running linters ---"
ruff format . # running ruff formatting
ruff check **/*.py --fix # running ruff linting
uv run ruff format . # running ruff formatting
uv run ruff check **/*.py --fix # running ruff linting

lint-check:
@echo "--- 🧹 Check is project is linted ---"
ruff format . --check # running ruff formatting
ruff check **/*.py # running ruff linting
uv run ruff format . --check # running ruff formatting
uv run ruff check **/*.py # running ruff linting

test:
@echo "--- 🧪 Running tests ---"
Expand Down

0 comments on commit 46c4af6

Please sign in to comment.