summaryrefslogtreecommitdiff
path: root/Taskfile.yml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-10-28 19:42:08 +0200
committerPaul Buetow <paul@buetow.org>2025-10-28 19:42:08 +0200
commit1cde39e35c0329b4783f188b050b78b520e43470 (patch)
tree05d7a35e06f29716a39aa7035f275c0a002d4922 /Taskfile.yml
parent70d61455ea5b8428197158d35544ca16ff954f23 (diff)
remove taskfile
Diffstat (limited to 'Taskfile.yml')
-rw-r--r--Taskfile.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/Taskfile.yml b/Taskfile.yml
deleted file mode 100644
index 49cfde2..0000000
--- a/Taskfile.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-version: '3'
-
-tasks:
- build:
- cmds:
- - go build -o gogios cmd/gogios/main.go
- dev:
- deps: ["vet", "lint"]
- cmds:
- - go build -race -o gogios cmd/gogios/main.go
- vet:
- cmds:
- - go vet **/*.go
- lint:
- cmds:
- - golangci-lint run
- lint-install:
- cmds:
- - go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest