Skip to content

Commit 27373b7

Browse files
committed
fix: add main makefile in root
1 parent 20aa3e7 commit 27373b7

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@ jobs:
3737
version: "0.8.2"
3838
python-version: ${{ matrix.python-version }}
3939

40-
- uses: extractions/setup-just@v3
41-
4240
- name: Run Tests
43-
run: just ci
41+
run: make ci
4442

4543
- name: Upload coverage to Coveralls
4644
uses: coverallsapp/github-action@v2

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.PHONY: ci
2+
3+
pre-commit:
4+
uv run pre-commit run --all-files
5+
6+
ci: pre-commit
7+
cd src/realtime && make tests
8+
cd src/supabase && make tests

0 commit comments

Comments
 (0)