diff options
| author | Fuwn <[email protected]> | 2026-02-10 10:58:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-10 10:58:50 +0000 |
| commit | 5b0be377ff7731bf4e5402afe14df2121031ed90 (patch) | |
| tree | 06b79c9a432ff23d576d0a9f4ef3955ee9896c6a /Taskfile.yaml | |
| download | deppa-5b0be377ff7731bf4e5402afe14df2121031ed90.tar.xz deppa-5b0be377ff7731bf4e5402afe14df2121031ed90.zip | |
feat: Initial commit
Diffstat (limited to 'Taskfile.yaml')
| -rw-r--r-- | Taskfile.yaml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml new file mode 100644 index 0000000..e4481e8 --- /dev/null +++ b/Taskfile.yaml @@ -0,0 +1,47 @@ +version: "3" + +vars: + BINARY: deppa + +tasks: + default: + desc: Build the application + cmds: + - task: build + + build: + desc: Build the binary with optimisations + cmds: + - go build -ldflags="-s -w" -o {{.BINARY}} . + sources: + - ./**/*.go + generates: + - ./{{.BINARY}} + + run: + desc: Build and run the application + deps: [build] + cmds: + - ./{{.BINARY}} + + install: + desc: Install the binary to GOPATH/bin + deps: [build] + cmds: + - cp {{.BINARY}} ${GOPATH:-~/go}/bin/{{.BINARY}} + + clean: + desc: Remove build artifacts + cmds: + - rm -f {{.BINARY}} + - go clean + + fmt: + desc: Format code + cmds: + - iku -w . || go fmt ./... + + lint: + desc: Run linter + cmds: + - golangci-lint run |