gilo/justfile
Timothy Warren 9eb067485d
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good
Highlight multiline comments
2023-10-06 15:23:01 -04:00

28 lines
386 B
Makefile

# Lists the available actions
default:
@just --list
# Run all the tests
test:
go test ./...
_cover:
go test ./... -coverprofile=coverage.out
# Calculate code coverage
coverage: _cover
go tool cover -html=coverage.out
# Cleanup generated files
clean:
rm -f gilo
rm -f coverage.out
# Run the autoformatter on all files
format:
go fmt ./...
# Build the binary
gilo:
go build