-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjustfile
More file actions
35 lines (27 loc) · 685 Bytes
/
Copy pathjustfile
File metadata and controls
35 lines (27 loc) · 685 Bytes
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
32
33
34
35
set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
[group('test')]
test:
@cargo test
[group('test')]
test-watch:
@cargo watch -q -c -x test
[group('check')]
lint:
@cargo fmt --all -- --check
@cargo clippy --all --all-targets --all-features -- --deny warnings
[group('check')]
lint-fix:
@cargo fmt --all
@cargo clippy --all --all-targets --all-features -- --deny warnings
[group('dev')]
gui-mock:
@cargo run --features mock --bin openhx
[group('dev')]
cli-mock *ARGS:
@cargo run --features mock --bin openhx-cli -- {{ ARGS }}
[group('docs')]
docs CRATE:
@open "https://docs.rs/{{ CRATE }}"
[group('misc')]
clean:
@cargo clean