forked from edgedb/edgedb-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
31 lines (19 loc) · 802 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
test:
# Test all features
cargo test --workspace --all-features
# Check no default features
cargo check --no-default-features --workspace
# Check `fs` feature (edgedb-tokio)
cargo check --features=fs --package edgedb-tokio
# Check with env feature, edgedb-tokio
cargo check --features=env --package edgedb-tokio
# Test edgedb-protocol without default features
cargo test --package=edgedb-protocol --no-default-features
# Test edgedb-protocol with "all-types" feature
cargo test --package=edgedb-protocol --features=all-types
cargo clippy --workspace --all-features --all-targets
cargo fmt --check
test-fast:
cargo fmt
cargo test --workspace --features=unstable
cargo clippy --workspace --all-features --all-targets