Skip to content

Commit 886d71b

Browse files
committed
fix: use make -C instead of cd
1 parent ea2e723 commit 886d71b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

Makefile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
.PHONY: ci
1+
.PHONY: ci, default, pre-commit
22

3-
pre-commit:
4-
uv run pre-commit run --all-files
3+
default:
4+
@echo "Available targets are: ci, pre-commit"
55

66
ci: pre-commit
7-
cd src/realtime && make tests
8-
cd src/supabase && make tests
7+
make -C src/realtime tests
8+
make -C src/supabase tests
9+
10+
pre-commit:
11+
uv run pre-commit run --all-files

0 commit comments

Comments
 (0)