Add magefiles/magefile.go with build automation targets: - Test() - runs go test -v ./... - Coverage() - runs tests with coverage profile output - Lint() - runs staticcheck for static analysis - Fmt() - formats all Go source files with gofmt - Vet() - runs go vet for code analysis - Check() - runs all quality checks in sequence (fmt, vet, lint, test) - Clean() - removes build artifacts Update magefiles/go.mod with github.com/magefile/mage dependency. Closes checkvist-api-8q3
5 lines
118 B
Modula-2
5 lines
118 B
Modula-2
module code.beautifulmachines.dev/jakoubek/checkvist-api/magefiles
|
|
|
|
go 1.21
|
|
|
|
require github.com/magefile/mage v1.15.0
|