sudoku-funpark/Taskfile.yml

18 lines
230 B
YAML
Raw Normal View History

2024-12-06 19:28:24 +01:00
# https://taskfile.dev
version: '3'
tasks:
default:
cmds:
- go run .
silent: true
precommit:
cmds:
- pre-commit run --all
silent: true
2025-01-21 21:09:11 +01:00
lint:
cmds:
- golangci-lint run
silent: true