Skip to content

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.0-20241127180247-a33202765966.1 to 1.36.1-20241127180247-a33202765966.1 #624

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.0-20241127180247-a33202765966.1 to 1.36.1-20241127180247-a33202765966.1

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.0-20241127180247-a33202765966.1 to 1.36.1-20241127180247-a33202765966.1 #624

Workflow file for this run

name: CI Build and Test
on:
workflow_call:
pull_request:
branches: ['main']
concurrency:
# Cancel in-progress runs on PR update
group: ci-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build-and-test:
name: Build & run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Install dependencies
run: go get ./...
- name: Build
run: go build -tags release -v ./...
- name: Test
run: go test -v ./...