summaryrefslogtreecommitdiff
path: root/Taskfile.yaml
blob: 0c8c31f484b2062537c03421340d4019e6e12419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: '3'

tasks:
  default:
    cmds:
      - go build -o totalrecall ./cmd/totalrecall
  run:
    cmds:
      - go run ./cmd/totalrecall
  test:
    cmds:
      - go test ./...
  install:
    cmds:
      - go install ./cmd/totalrecall