diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a66dc1..fd052e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/golang-templates/seed/compare/v0.21.0...HEAD) +### Added + +- Add `run` target which runs `go run`. ([#376](https://github.com/golang-templates/seed/pull/376)) + ## [0.21.0](https://github.com/golang-templates/seed/releases/tag/v0.21.0) ### Added diff --git a/Makefile b/Makefile index 686bf37..a8292cc 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,10 @@ clean: ## remove files created during build pipeline rm -f '"$(shell go env GOCACHE)/../golangci-lint"' go clean -i -cache -testcache -modcache -fuzzcache -x +.PHONY: run +run: ## go run + go run . + .PHONY: mod mod: ## go mod tidy go mod tidy