Skip to content

SearchV2

SearchV2 #310

Workflow file for this run

name: Buf lint
on:
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wizhi/setup-buf@v1
with:
version: 1.47.2
- run: buf check lint
breaking:
runs-on: ubuntu-latest
steps:
- name: Setup buf
uses: wizhi/setup-buf@v1
with:
version: 1.47.2
- name: Check out ref code
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
path: baseref
- run: cd baseref && buf image build -o image.bin
- name: Check out code
uses: actions/checkout@v4
with:
path: prclone
- run: cd prclone && buf check breaking --against ../baseref/image.bin