-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJustfile
37 lines (30 loc) · 1.04 KB
/
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
32
33
34
35
36
37
# This help screen
show-help:
just --list
# Test it was built ok
test:
RUST_BACKTRACE=1 cargo test
# Test the markdown in the docs directory
specdown: build
specdown run --temporary-workspace-dir --add-path "$PWD/target/release" "README.md"
# Build release version
build:
cargo build --release
# Build docker image
docker-build:
docker build -t purplebooth/readable-name-generator:latest .
# Lint it
lint:
cargo +nightly fmt --all -- --check
cargo +nightly clippy --all-features -- -D warnings -D clippy::all -D clippy::pedantic -D clippy::cargo -A clippy::multiple-crate-versions
cargo +nightly check
cargo +nightly audit
# Format what can be formatted
fmt:
cargo +nightly fix --allow-dirty --allow-staged
cargo +nightly clippy --allow-dirty --allow-staged --fix -Z unstable-options --all-features -- -D warnings -D clippy::all -D clippy::pedantic -D clippy::cargo -D clippy::nursery -A clippy::multiple-crate-versions
cargo +nightly fmt --all
yamlfmt -w .github/*.yml .github/workflows/*.yml .*.yml
# Clean the build directory
clean:
cargo clean