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