Skip to content

Commit b0586f0

Browse files
authored
Remove unused /deploy/olm directory (#467)
1 parent 0175793 commit b0586f0

File tree

7 files changed

+36
-9076
lines changed

7 files changed

+36
-9076
lines changed

Justfile

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
default:
2+
@just --list
3+
4+
actionlint:
5+
actionlint
6+
7+
build: d
8+
cargo build
9+
10+
build-release:
11+
cargo build --release
12+
13+
check: actionlint clippy doc fmt test udeps
14+
15+
clean:
16+
cargo clean
17+
18+
clippy:
19+
cargo clippy --locked -- -D warnings
20+
21+
doc:
22+
RUSTDOCFLAGS="-D warnings" cargo +nightly doc --document-private-items
23+
24+
fmt:
25+
cargo fmt --all
26+
27+
pr:
28+
gh pr create --web
29+
30+
test:
31+
cargo test --locked
32+
33+
udeps:
34+
cargo +nightly udeps --all-targets --backend depinfo
35+
36+
# TODO: Stuff from Makefile

0 commit comments

Comments
 (0)