Skip to content

Commit

Permalink
Update local dev and add pull request template
Browse files Browse the repository at this point in the history
  • Loading branch information
agbpatro authored and sethterashima committed Dec 6, 2023
1 parent 6a15935 commit 70d9d70
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 8 deletions.
14 changes: 6 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@ all: build
format:
git describe --tags --abbrev=0 | sed 's/v//' > pkg/account/version.txt
go fmt ./...
.PHONY: format

test: format
go test ./...
test:
go test -cover ./...
go vet ./...
.PHONY: test

build: test
build: format test
go build ./...
.PHONY: build

install: test
install: format test
go install ./cmd/...
.PHONY: install

.PHONY: install build test format
23 changes: 23 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Description

Please include a summary of the changes and the related issue.

Fixes # (issue)

## Type of change

Please select all options that apply to this change:

- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] Documentation update

# Checklist:

Confirm you have completed the following steps:

- [ ] My code follows the style of this project.
- [ ] I have performed a self-review of my code.
- [ ] I have made corresponding updates to the documentation.
- [ ] I have added/updated unit tests to cover my changes.

0 comments on commit 70d9d70

Please sign in to comment.