We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20aa3e7 commit 27373b7Copy full SHA for 27373b7
.github/workflows/ci.yml
@@ -37,10 +37,8 @@ jobs:
37
version: "0.8.2"
38
python-version: ${{ matrix.python-version }}
39
40
- - uses: extractions/setup-just@v3
41
-
42
- name: Run Tests
43
- run: just ci
+ run: make ci
44
45
- name: Upload coverage to Coveralls
46
uses: coverallsapp/github-action@v2
Makefile
@@ -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