From 0c6e5571b27a80890dddfcccf2292c4a7a72fe0b Mon Sep 17 00:00:00 2001 From: Hugo Haas Date: Thu, 4 Jun 2026 16:53:05 -0500 Subject: [PATCH] build: fixed test deps --- mise.toml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/mise.toml b/mise.toml index 2919131..73212fc 100644 --- a/mise.toml +++ b/mise.toml @@ -1,5 +1,5 @@ [tools] -go = "1.26.3" +go = "1.26.4" "go:github.com/vladopajic/go-test-coverage/v2" = "2.18.8" "go:golang.org/x/vuln/cmd/govulncheck" = "1.3.0" golangci-lint = "2.12.2" @@ -7,7 +7,7 @@ goreleaser = "2.16.0" cocogitto = "7.0.0" gotestsum = "1.13.0" hk = "1.46.0" -rumdl = "0.2.4" +rumdl = "0.2.5" zizmor = "1.25.2" dprint = "0.54.0" ghalint = "1.5.6" @@ -46,7 +46,12 @@ run = "test -f .goreleaser.yml && goreleaser check || true" [tasks.lint] description = "Lint code, check dead code" -depends = ["lint:mod", { task = "lint:deadcode", args = ["--test"] }, "lint:go", "lint:release"] +depends = [ + "lint:mod", + { task = "lint:deadcode", args = ["--test"] }, + "lint:go", + "lint:release", +] [tasks.fix] description = "Lint and fix code" @@ -58,12 +63,12 @@ run = [ [tasks.test] description = "Run tests with coverage" -sources = ["**/*.go"] +sources = ["go.mod", "**/*.go"] run = "gotestsum -- -race -coverprofile=${COVEROUT} -covermode=atomic ./..." [tasks.test-int] description = "Run integration tests" -sources = ["**/*.go"] +sources = ["go.mod", "**/*.go"] run = "test -d internal && gotestsum -- -race -tags=integration ./internal/... || true" [tasks.coverage]