We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4daeb64 commit afa4fc5Copy full SHA for afa4fc5
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased](https://github.com/golang-templates/seed/compare/v0.21.0...HEAD)
9
10
+### Added
11
+
12
+- Add `run` target which runs `go run`. ([#376](https://github.com/golang-templates/seed/pull/376))
13
14
## [0.21.0](https://github.com/golang-templates/seed/releases/tag/v0.21.0)
15
16
### Added
Makefile
@@ -25,6 +25,10 @@ clean: ## remove files created during build pipeline
25
rm -f '"$(shell go env GOCACHE)/../golangci-lint"'
26
go clean -i -cache -testcache -modcache -fuzzcache -x
27
28
+.PHONY: run
29
+run: ## go run
30
+ go run .
31
32
.PHONY: mod
33
mod: ## go mod tidy
34
go mod tidy
0 commit comments