Skip to content

taskfile.dev#

Might be a nice alternative to make.

Installation#

go install github.com/go-task/task/v3/cmd/task@latest

Initial Task#

version: "3"

tasks:
  hello:
   cmds:
    - echo 'Hello World from Task!'
   silent: true