Skip to content

chore(deps): bump github.com/bufbuild/protovalidate-go from 0.5.0 to 0.6.2 #25

chore(deps): bump github.com/bufbuild/protovalidate-go from 0.5.0 to 0.6.2

chore(deps): bump github.com/bufbuild/protovalidate-go from 0.5.0 to 0.6.2 #25

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Run coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic -v ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.out
fail_ci_if_error: true
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}