Skip to content

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
devlinwaluja authored Oct 2, 2024
1 parent 4dc821e commit 1ede4a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pipeline/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@
# Makefile
#

BLACK:=black
ISORT:=isort
RUFF:=ruff
BLACK := black
ISORT := isort
RUFF := ruff

.PHONY: all fmt lint test


all: fmt lint test

fmt:
$(BLACK) .
$(ISORT) .

lint:
$(BLACK) --check .
$(ISORT) --check .
$(RUFF) check .

test:
pytest

0 comments on commit 1ede4a2

Please sign in to comment.