Bump google.golang.org/protobuf from 1.28.1 to 1.33.0 #48
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
GO_VERSION: [ "1.19" ] | |
steps: | |
- name: Check out the codebase. | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.GO_VERSION }} | |
- name: Caching dependency | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
~/go/bin | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
- name: Run tests | |
run: | | |
go mod download | |
set -x | |
go test -covermode atomic -race -timeout 300s -coverprofile ./coverage.out $(go list ./...) | |
cov="$(go tool cover -func coverage.out | grep -v 100.0% || true)" | |
echo $cov | |
test -z "$cov" |