20240824 finished.

This commit is contained in:
2024-08-24 11:52:03 +08:00
parent 3ea818ef10
commit 3f326e3185
4 changed files with 62 additions and 12 deletions

20
justfile Executable file
View 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}}