Skip to content

chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0 #48

chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0

chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0 #48

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Check out code
uses: actions/checkout@v2
- name: Download module dependencies
env:
GOPROXY: "https://proxy.golang.org"
run: go mod download
- name: Test
run: go test -v -coverprofile=coverage.txt ./...
- name: Upload Coverage
uses: codecov/codecov-action@v1
continue-on-error: true
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.txt
fail_ci_if_error: false