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 07bd6a5 commit 28d0ef8Copy full SHA for 28d0ef8
.github/workflows/ci.yml
@@ -35,9 +35,7 @@ jobs:
35
python-version: ${{ matrix.python-version }}
36
37
- uses: extractions/setup-just@v3
38
- with:
39
- just-version: 1.5.0 # optional semver specification, otherwise latest
40
-
+
41
- name: Run Tests
42
run: just ci
43
justfile
@@ -11,11 +11,11 @@ default:
11
@just --list
12
13
[doc("Run all available tests")]
14
-test: realtime::test && supabase::test
+test: realtime::test supabase::test
15
16
[doc("Run pre-commit on all files")]
17
pre-commit:
18
uv run pre-commit run --all-files
19
20
[doc("Run CI tests")]
21
-ci: pre-commit && test
+ci: pre-commit test
0 commit comments