From 178aeeb77f2461121b33f38dd81d2da416f57657 Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Fri, 5 Jul 2024 13:47:52 -0700 Subject: [PATCH] chore: fixes deploy --- .github/workflows/deploy.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 537382bb61d8..b69407cebd56 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,8 +35,14 @@ jobs: check-latest: true - name: Checkout code uses: actions/checkout@v4 + - name: Install Protoc + uses: arduino/setup-protoc@v3 + - name: Install gRPC and Go + run: | + go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest + go install google.golang.org/protobuf/cmd/protoc-gen-go@latest - name: Run Go Tests with Coverage - run: make test SKIP_ASSET=1 + run: make test int-test: name: Integration Tests timeout-minutes: 60