Bump google.golang.org/grpc from 1.37.0 to 1.56.3 #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |