Added make command to check for dependency updates.

This commit is contained in:
mikestefanello 2022-02-10 08:21:07 -05:00
parent c6a50b3bbf
commit 944a4d941a

View File

@ -60,4 +60,9 @@ test:
.PHONY: worker
worker:
clear
go run worker/worker.go
go run worker/worker.go
# Check for direct dependency updates
.PHONY: check-updates
check-updates:
go list -u -m -f '{{if not .Indirect}}{{.}}{{end}}' all