.PHONY: build test fmt tidy install

build:
	go build -o dist/hecate ./cmd/hecate

test:
	go test ./...

fmt:
	gofmt -w ./cmd ./internal

tidy:
	go mod tidy

install:
	sudo ./scripts/install.sh
