20240826 finished.

This commit is contained in:
2024-08-26 11:22:13 +08:00
parent 7210c68a2f
commit c5bb4d2f43
7 changed files with 121 additions and 11 deletions

22
justfile Normal file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env just --justfile
build:
dotnet build -c Release
test:
dotnet 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
#!/usr/bin/env bash
cd LeetCodeSharp
dotnet run --project ../LeetCodeSharp.Fetcher/LeetCodeSharp.Fetcher.csproj -- {{id}}