Skip to content

Commit

Permalink
tweaked and new cmds.
Browse files Browse the repository at this point in the history
  • Loading branch information
bengarrett committed Dec 16, 2023
1 parent 4262fa3 commit 127821a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Taskfile.dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,16 @@ tasks:
test:
desc: "Run the test suite."
cmds:
- go test -v ./...
- set -o pipefail && go test ./... -json | tparse -all
nil:
desc: "Run the static analysis techniques to catch Nil dereferences."
cmds:
- nilaway ./...
testr:
desc: "Run the test suite with the slower race detection."
cmds:
- go test -race -v ./...
- set -o pipefail && go test ./... -json | tparse -all
#- go test -race -v ./...
serve:
desc: "Run the internal web server in development mode with live reload."
cmds:
Expand Down

0 comments on commit 127821a

Please sign in to comment.