-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Aden-Q
committed
Apr 26, 2024
1 parent
f36f07e
commit 8a13fe7
Showing
5 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## What does this PR do? | ||
|
||
Summary of proposed changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module github.com/Aden-Q/monkey | ||
|
||
go 1.21.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# list all receipts | ||
@help: | ||
just -l | ||
|
||
# run go mod vendor to fetch all dependencies for local build | ||
@vendor: | ||
go mod vendor | ||
|
||
# run all tests with ginkgo | ||
@test: | ||
ginkgo run -r -cover -coverprofile=coverage.out | ||
|
||
# run lint | ||
@lint: | ||
golangci-lint run | ||
|
||
# generate RESTful API documentation with Swagger 2.0 | ||
@swag-init: | ||
swag init |