20 lines
319 B
Makefile
20 lines
319 B
Makefile
|
#!/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}}
|