-
Notifications
You must be signed in to change notification settings - Fork 56
Add run Make target #376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add run Make target #376
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #376 +/- ##
=======================================
Coverage 50.00% 50.00%
=======================================
Files 1 1
Lines 4 4
=======================================
Hits 2 2
Misses 2 2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Thank you for your contribution |
I have forgotten to merge. @guruakashsm, sorry for the delay. |
I now see why I have not merged it.
Can you please sign your commits? |
@guruakashsm, bump. |
This PR adds a make run target to the Makefile, making it easier to run the Go application with a single command.
Changes Introduced:
Added run target to Makefile:
Motivation:
The Makefile currently provides targets for building, testing, and linting but lacks a command to run the application. This addition improves usability by allowing developers to start the application without manually using
go run
.How to Test:
make run
Related Issue:
Fixes #375
Notes: