mirror of
https://github.com/rommapp/grout.git
synced 2026-04-23 06:54:36 +00:00
25 lines
507 B
YAML
25 lines
507 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
|
|
lint:
|
|
desc: Run Go code style checks (fmt, vet, staticcheck)
|
|
cmds:
|
|
- go fmt ./...
|
|
- go vet ./...
|
|
- staticcheck ./...
|
|
silent: true
|
|
|
|
gen-platforms:
|
|
desc: Generate platforms.json from markdown docs
|
|
cmds:
|
|
- go run tools/gen-platforms/main.go
|
|
silent: true
|
|
|
|
hooks-setup:
|
|
desc: Install git hooks for development
|
|
cmds:
|
|
- git config core.hooksPath .githooks
|
|
- echo "Git hooks installed from .githooks/"
|
|
silent: true
|