Skip to content

Bump github.com/bufbuild/buf from 1.36.0 to 1.45.0 #100

Bump github.com/bufbuild/buf from 1.36.0 to 1.45.0

Bump github.com/bufbuild/buf from 1.36.0 to 1.45.0 #100

Workflow file for this run

name: compile+test
on:
push:
branches:
- '**'
pull_request:
jobs:
compile-and-test:
strategy:
matrix:
go-version: [stable]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup cache
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Build and test (no golangci-lint)
run: make build-nolint