-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
42 lines (29 loc) · 863 Bytes
/
justfile
File metadata and controls
42 lines (29 loc) · 863 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
36
37
38
39
40
41
42
[working-directory: './dbt_project']
init:
cargo run init
run:
cargo run run --verbose --entry-point ./dbt_project
run-verbose:
cargo run run --verbose --entry-point ./dbt_project
run-release:
cargo run --release run --verbose --entry-point ./dbt_project
run-release-manifest:
cargo run --release run --verbose --entry-point ./dbt_project --only-manifest
install:
cargo install --path .
fmt:
cargo fmt
test:
cargo test
test-cov:
rustup run stable cargo llvm-cov test --workspace --all-features
lint:
cargo clippy --workspace --all-targets --all-features --locked -- -D warnings
# Needs Hugo and Go installed
[working-directory: 'docs']
setup-docs:
hugo mod tidy
docs:
hugo server --logLevel debug --disableFastRender --baseURL http://localhost:1313/ -p 1313 -s docs
bump:
cz bump --increment PATCH