diff options
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 20 |
1 files changed, 20 insertions, 0 deletions
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 |
