From 3562d2fd34bb98d29c7cf6e4d4130129a7bb24f2 Mon Sep 17 00:00:00 2001 From: Sam Scholten Date: Mon, 15 Dec 2025 19:35:46 +1000 Subject: Init v0.1.0 --- justfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 justfile (limited to 'justfile') diff --git a/justfile b/justfile new file mode 100644 index 0000000..2e0f285 --- /dev/null +++ b/justfile @@ -0,0 +1,20 @@ +# ScholFetch - URL to article metadata converter + +default: + @just --list + +# Build the binary +build: + go build -o scholfetch . + +# Run tests +test: + go test ./... + +# Format code +fmt: + go fmt ./... + +# Run linter (requires golangci-lint) +lint: + golangci-lint run -- cgit v1.2.3