Skip to content

build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 #167

build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0

build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 #167

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.1
- name: Setup gotestsum
uses: autero1/[email protected]
with:
gotestsum_version: 1.6.4
- name: "go test"
run: |
rm -rf ./reports && mkdir ./reports;
gotestsum --format standard-verbose --junitfile ./reports/junit.xml --raw-command -- go test -parallel 5 --json ./...;
- name: Publish Unit Test Results
uses: EnricoMi/[email protected]
with:
commit: ${{ github.event.workflow_run.head_sha }}
files: "reports/*.xml"