20240824 finished.
This commit is contained in:
20
justfile
Executable file
20
justfile
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env just --justfile
|
||||
|
||||
build:
|
||||
cargo build --release
|
||||
|
||||
test:
|
||||
cargo test
|
||||
|
||||
commit:
|
||||
#!/usr/bin/env bash
|
||||
set -euxo pipefail
|
||||
time=$(date "+%Y%m%d")
|
||||
message="$time finished."
|
||||
|
||||
git add -A
|
||||
git commit -m "$message"
|
||||
git push
|
||||
|
||||
pull id: build
|
||||
./target/release/leetcode-rust {{id}}
|
Reference in New Issue
Block a user