Taskfile.yaml

 1version: "3"
 2
 3tasks:
 4  test:
 5    desc: Run tests
 6    cmds:
 7      - go test ./... {{.CLI_ARGS}}
 8
 9  test:update:
10    desc: Run tests and update golden files
11    cmds:
12      - go test ./... -update {{.CLI_ARGS}}
13
14  test:print:
15    desc: Print golden files for debugging
16    method: none
17    sources:
18      - ./testdata/TestDiffView/**/*.golden
19    cmds:
20      - for: sources
21        cmd: echo && echo "------- {{.ITEM}} -------" && echo && cat {{.ITEM}}
22    silent: true