go-template/justfile

16 lines
163 B
Makefile
Raw Normal View History

2024-01-05 16:27:28 +01:00
run:
cd src && go run .
build:
mkdir -p bin
cd src && go build -o ../bin/main .
test:
cd src && go test -v .
clean:
rm -rf bin/*
format:
go fmt src/*.go