Skip to content

Commit

Permalink
💚 invest
Browse files Browse the repository at this point in the history
Signed-off-by: vankichi <[email protected]>
  • Loading branch information
vankichi committed Jul 26, 2022
1 parent 8916084 commit f0f585c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-protobuf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
image: ghcr.io/vdaas/vald/vald-ci-container:nightly
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: set git config
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: build protobuf
run: |
make proto/all
5 changes: 5 additions & 0 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
image: ghcr.io/vdaas/vald/vald-ci-container:nightly
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: set git config
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: go build
run: |
go build -mod=readonly ./...
Expand Down
1 change: 1 addition & 0 deletions Makefile.d/proto.mk
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ $(GOPATH)/bin/swagger:
$(PBGOS): \
$(PROTOS) \
proto/deps
@echo $(ROOTDIR)
@$(call green, "generating pb.go files...")
$(call mkdir, $(dir $@))
$(call proto-code-gen, $(patsubst apis/grpc/%.pb.go,apis/proto/%.proto,$@))
Expand Down
1 change: 1 addition & 0 deletions pkg/agent/core/ngt/handler/grpc/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import (
"github.com/vdaas/vald/internal/test/goleak"
"github.com/vdaas/vald/pkg/agent/core/ngt/service"
)

func TestMain(m *testing.M) {
log.Init(log.WithLoggerType(logger.NOP.String()))
info.Init("")
Expand Down

0 comments on commit f0f585c

Please sign in to comment.