Skip to content

Project import generated by Copybara. #31

Project import generated by Copybara.

Project import generated by Copybara. #31

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
check-latest: true
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Install protoc-gen-go and grpc
run: |
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports@latest
- name: Generate
run: go generate -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v $(go list ./... | grep -v /integration)