Skip to content

Service discovery

Service discovery #35

Workflow file for this run

name: api - CI
on:
pull_request:
branches:
- main
paths:
- api/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint-breaking:
name: Lint and Breaking Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/buf-setup-action@v1
with:
version: "1.33.0"
- uses: bufbuild/buf-lint-action@v1
with:
input: api
- uses: bufbuild/buf-breaking-action@v1
with:
input: api
against: "https://github.com/${GITHUB_REPOSITORY}.git#branch=main,subdir=api"