summaryrefslogtreecommitdiff
path: root/Taskfile.yml
blob: 62aefaa3e644797219109eec41de55b9a27473a0 (plain)
1
2
3
4
5
6
7
8
9
10
version: '3'

tasks:
  build:
    cmds:
      - go build -o gorum cmd/gorum/main.go
  test:
    cmds:
      - go clean -testcache
      - go test ./... -v