Skip to content

chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.32.0 #25

chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.32.0

chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.32.0 #25

Workflow file for this run

name: go
on:
push:
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [1.18.x]
steps:
- name: Set up ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: make test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./profile.txt
- name: Build
run: make build