aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: 2e0f2859f763485c745645a6a75d1e29c5a3be91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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