Skip to content

Bump google.golang.org/protobuf from 1.25.1-0.20200805231151-a709e31e5d12 to 1.33.0 #90

Bump google.golang.org/protobuf from 1.25.1-0.20200805231151-a709e31e5d12 to 1.33.0

Bump google.golang.org/protobuf from 1.25.1-0.20200805231151-a709e31e5d12 to 1.33.0 #90

Workflow file for this run

name: Build and Test Commits
on:
push:
branches: [ release ]
pull_request:
branches: [ release ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.14', '1.15', '1.16' ]
steps:
- name: Set up timezone
uses: zcong1993/setup-timezone@v1.0
with:
timezone: America/Los_Angeles
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into Go module directory
uses: actions/checkout@v2
- name: Build
run: make build
- name: Test
run: make test