diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1905e29..ded10b9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,5 +18,5 @@ jobs: with: go-version: 1.17 -# - name: Test -# run: go test -v ./... + - name: Test + run: make test diff --git a/Makefile b/Makefile index 24f81dc..2c7ab77 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ clean : -rm output/* -rm cmd/*.so +test: + go test -v ./master + grpc : protoc --go-grpc_out=rpc --go_out=rpc rpc/*.proto