Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version: "3"

tasks:
default:
desc: run the loops cli in dev
dotenv:
- .env
- .env.{{.ENV}}
Expand All @@ -12,19 +13,23 @@ tasks:
silent: true

deps:
desc: install/update deps
cmds:
- go mod tidy

build:
desc: build the cli
deps:
- deps
cmds:
- go build -o dist/loops

test:
desc: run tests
cmds:
- go test ./... -cover

vuln:
desc: run govulncheck
cmds:
- go tool govulncheck {{.CLI_ARGS}} ./...
Loading