This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
fix(deps): update module connectrpc.com/connect to v1.14.0 #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: buf lint and breaking check | |
on: pull_request | |
jobs: | |
bufpr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: bufbuild/buf-setup-action@v1 | |
with: | |
github_token: ${{ github.token }} | |
- uses: bufbuild/buf-lint-action@v1 | |
- uses: bufbuild/buf-breaking-action@v1 | |
if: ${{ env.CHECK_BREAKING == 'true' }} # Change to true when API is stable | |
with: | |
# The 'main' branch of the GitHub repository that defines the module. | |
against: "https://github.com/${GITHUB_REPOSITORY}.git#branch=main" |