-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
42 lines (32 loc) · 764 Bytes
/
mise.toml
File metadata and controls
42 lines (32 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tools]
go = "1.24.4"
[tasks.test]
run = "go test ./..."
description = "Run all tests"
[tasks.test-verbose]
run = "go test -v ./..."
description = "Run tests with verbose output"
[tasks.test-cover]
run = "go test -cover ./..."
description = "Run tests with coverage"
[tasks.bench]
run = "go test -bench=."
description = "Run benchmarks"
[tasks.fmt]
run = "go fmt ./..."
description = "Format Go code"
[tasks.vet]
run = "go vet ./..."
description = "Vet Go code"
[tasks.mod-tidy]
run = "go mod tidy"
description = "Tidy Go modules"
[tasks.doc]
run = "go doc"
description = "Show package documentation"
[tasks.clean]
run = "go clean"
description = "Clean build cache"
[tasks.check]
depends = ["fmt", "vet", "test"]
description = "Run format, vet, and test"