From e9a147c836aa58911a0825f696026ce4f204a4d6 Mon Sep 17 00:00:00 2001 From: 9seconds Date: Wed, 11 Feb 2026 09:01:32 +0100 Subject: [PATCH] Add build task --- .mise.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.mise.toml b/.mise.toml index 2c9ca19..19f24a1 100644 --- a/.mise.toml +++ b/.mise.toml @@ -3,3 +3,9 @@ go = "latest" gofumpt = "latest" goreleaser = "latest" + +[tasks.build] +description = "Build binary" +sources = ["**/*.go", "go.mod", "go.sum"] +outputs = ["mtg"] +run = "go build"