Merge pull request #77 from aykhans/feat/add-makefile
Some checks failed
golangci-lint / lint (push) Failing after 2m11s

🔧 Added Makefile
This commit is contained in:
Aykhan Shahsuvarov 2025-02-28 03:43:33 +04:00 committed by GitHub
commit 00afca7139
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
lint:
golangci-lint run
build:
go build -ldflags "-s -w" -o "./dodo"
build-all:
rm -rf ./binaries
./build.sh