Skip to content

Bump buf.build/gen/go/bufbuild/reflect/connectrpc/go #205

Bump buf.build/gen/go/bufbuild/reflect/connectrpc/go

Bump buf.build/gen/go/bufbuild/reflect/connectrpc/go #205

Workflow file for this run

name: ci
on: push
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.20.x, 1.21.x, 1.22.x]
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup-go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: setup-buf
uses: bufbuild/buf-setup-action@v1
- name: cache
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-connect-ci-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-connect-ci-
- name: generate
run: make generate && make checkgenerate
- name: test
env:
BUF_TOKEN: ${{ secrets.BUF_TOKEN }}
run: make test
- name: lint
if: matrix.go-version == '1.22.x'
run: make lint