summaryrefslogtreecommitdiff
path: root/Taskfile.yml
diff options
context:
space:
mode:
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