From 27c1052d86c0bcb060864cb25f456c1e3c834d44 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Fri, 29 Aug 2025 14:12:54 -0300 Subject: [PATCH] chore: add basic taskfile --- Taskfile.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Taskfile.yaml diff --git a/Taskfile.yaml b/Taskfile.yaml new file mode 100644 index 0000000000000000000000000000000000000000..82864bf8e838dd1449f00602ad111482f2ad8b85 --- /dev/null +++ b/Taskfile.yaml @@ -0,0 +1,23 @@ +version: '3' + + +tasks: + test: + desc: Run tests + cmds: + - go test ./... + + lint: + desc: Run linters + cmds: + - golangci-lint run --config .golangci.yml --timeout 10m + + lint:fix: + desc: Fix lint issues + cmds: + - golangci-lint run --config .golangci.yml --fix + + fmt: + desc: Format code + cmds: + - gofumpt -w .