Added make command to check for dependency updates.

This commit is contained in:
mikestefanello 2022-02-10 08:21:07 -05:00
parent cb58b89b6c
commit 0cb52b6e12

View file

@ -61,3 +61,8 @@ test:
worker: worker:
clear 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