-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(server): sort duplicate key error (#55)
* fix sort duplicate key error * add test case * fix test error * fix lint * add Mutex lock --------- Co-authored-by: tomokazu tantaka <[email protected]>
- Loading branch information
Showing
4 changed files
with
209 additions
and
113 deletions.
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,15 @@ | ||
help: | ||
@echo "Usage:" | ||
@echo " make <target>" | ||
@echo "" | ||
@echo "Targets:" | ||
@echo " lint Run golangci-lint with auto-fix" | ||
@echo " test Run unit tests with race detector in short mode" | ||
|
||
lint: | ||
golangci-lint run --fix | ||
|
||
test: | ||
go test -race -short -v ./... | ||
|
||
.PHONY: lint test |
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
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
Oops, something went wrong.