-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.mise.toml
More file actions
40 lines (33 loc) · 1.45 KB
/
.mise.toml
File metadata and controls
40 lines (33 loc) · 1.45 KB
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
[tools]
# =================================================================================================
# Project Tools -> pinned versions
# =================================================================================================
go = "1.26.0"
"aqua:golangci/golangci-lint" = "2.10.1"
"aqua:goreleaser/goreleaser" = "2.14.0"
"aqua:kubernetes/kubectl" = "1.33.1"
# =================================================================================================
# Misc Tools
# =================================================================================================
"aqua:kubernetes/minikube" = "latest"
"aqua:helm/helm" = "latest"
"aqua:derailed/k9s" = "latest"
direnv = "latest"
# =================================================================================================
# CI Tools
# =================================================================================================
"aqua:rhysd/actionlint" = "1"
"shellcheck" = "0.11"
svu = "latest"
# =================================================================================================
# TASKS -> GO
# =================================================================================================
[tasks."release"]
description = "Run goreleaser in snapshot mode."
run = "goreleaser release --snapshot --clean"
[tasks."lint"]
description = "Run golangci-lint in fix mode."
run = "golangci-lint run --fix"
[tasks."test"]
description = "Run e2e tests."
run = "bash scripts/test.sh"