Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aden-Q committed Apr 26, 2024
1 parent f36f07e commit 8a13fe7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## What does this PR do?

Summary of proposed changes
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*.out

# Dependency directories (remove the comment below to include it)
# vendor/
vendor/

# Go workspace file
go.work
Empty file added .golangci.yaml
Empty file.
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/Aden-Q/monkey

go 1.21.4
19 changes: 19 additions & 0 deletions justfile
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

0 comments on commit 8a13fe7

Please sign in to comment.