Skip to content

Bump google.golang.org/protobuf from 1.28.1 to 1.33.0 #45

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

Bump google.golang.org/protobuf from 1.28.1 to 1.33.0 #45

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.x
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: restore cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: make cover
env:
GITHUB_TOKEN: ${{ secrets.GHTOOLS_GITHUB_TOKEN }}
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: cover.out
parallel: true
flag-name: OS-${{ matrix.os }}-Go-1.x
# notifies that all test jobs are finished.
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true