Let error handler handle all error logic, logging, and canceling.
This commit is contained in:
parent
cd1887124e
commit
acebcf0ba0
10 changed files with 43 additions and 49 deletions
4
Makefile
4
Makefile
|
|
@ -54,7 +54,7 @@ run:
|
|||
# Run all tests
|
||||
.PHONY: test
|
||||
test:
|
||||
go test -p 1 ./...
|
||||
go test -count=1 -p 1 ./...
|
||||
|
||||
# Run the worker
|
||||
.PHONY: worker
|
||||
|
|
@ -65,4 +65,4 @@ worker:
|
|||
# Check for direct dependency updates
|
||||
.PHONY: check-updates
|
||||
check-updates:
|
||||
go list -u -m -f '{{if not .Indirect}}{{.}}{{end}}' all
|
||||
go list -u -m -f '{{if not .Indirect}}{{.}}{{end}}' all | grep "\["
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue