From 3e57383ce576e2c3405dee331da2c2a4a3a95ed4 Mon Sep 17 00:00:00 2001 From: JT Archie Date: Sat, 7 Oct 2023 08:35:00 -0600 Subject: [PATCH] use ginkgo runner --- Taskfile.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 0de5a14..4242dd8 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,18 +1,16 @@ version: '3' tasks: - build: go build ./... format: cmds: - deno fmt README.md - gofmt -w . lint: golangci-lint run --fix --timeout "10m" - test: go test -cover -race ./... + test: go run github.com/onsi/ginkgo/v2/ginkgo -cover -race -r -p example: go run ./... --source-path example/ --build-path ./build --base-url https://example.com default: cmds: - task: format - task: lint - - task: build - task: test - task: example \ No newline at end of file