Skip to content

Bump google.golang.org/protobuf from 1.30.0 to 1.33.0 #80

Bump google.golang.org/protobuf from 1.30.0 to 1.33.0

Bump google.golang.org/protobuf from 1.30.0 to 1.33.0 #80

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ "1.18.x"]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Gofmt
run: diff -u <(echo -n) <(gofmt -d $(find . -type f -name '*.go' -not -path "./vendor/*"))
- name: Test
run: go test -v -race ./...
- name: Vet
run: go vet -composites=false ./...