1# https://taskfile.dev
2
3version: '3'
4
5tasks:
6 lint:
7 desc: Run base linters
8 cmds:
9 - golangci-lint run
10
11 test:
12 desc: Run tests
13 cmds:
14 - go test ./... {{.CLI_ARGS}}
15
16 test:table:
17 desc: Run table tests
18 cmds:
19 - go test ./table {{.CLI_ARGS}}