From 82baee957e06b9e09a5aff63747888c9e9754041 Mon Sep 17 00:00:00 2001
From: Manuel Mendez <github@i.m.mmlb.dev>
Date: Wed, 8 May 2024 12:12:03 -0400
Subject: [PATCH] make: Add more descriptive help strings to targets

---
 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 48c1867f..caed6cd6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,17 @@
 .DEFAULT_GOAL := help
 
-## lint
+## Run all linters
 lint: golangci-lint
 
-## golangci-lint
+## Run golangci-lint
 golangci-lint:
 	go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.57 run --config .golangci.yml
 
-## go test
+## Run go test
 go-test:
 	CGO_ENABLED=0 go test -v -covermode=atomic ./...
 
-## test
+## Run all tests and linters
 test: go-test lint
 
 # https://gist.github.com/prwhite/8168133