Skip to content

Commit

Permalink
Merge pull request #6 from MysteriousPotato/develop
Browse files Browse the repository at this point in the history
V0.4.0
  • Loading branch information
MysteriousPotato authored Nov 3, 2023
2 parents 1773ecc + 53113f1 commit a81aaaf
Show file tree
Hide file tree
Showing 37 changed files with 2,330 additions and 1,545 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.21"

- name: Test
run: |
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
.vscode
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
test:
go test -race ./...
bench:
go test -run=^$ -bench=. ./...
build:
protoc --go_out=. --go_opt=paths=source_relative \
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
./servicepb/service.proto
doc:
pkgsite -gorepo ./...
Loading

0 comments on commit a81aaaf

Please sign in to comment.