DATA-4835: Move ImageMetadataToJSONLines to goutils #2724
This file contains hidden or 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: Proto Checks | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| jobs: | |
| proto-test: | |
| name: Test For Proto Lint and Breaking Changes | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: jdx/mise-action@c37c93293d6b742fc901e1406b8f764f6fb19dac | |
| with: | |
| experimental: true | |
| install: false | |
| - name: Extract buf version from mise | |
| id: buf-version | |
| run: | |
| echo "version=$(mise tool buf --active)" >> $GITHUB_OUTPUT | |
| - uses: bufbuild/buf-setup-action@a47c93e0b1648d5651a065437926377d060baa99 | |
| with: | |
| version: ${{ steps.buf-version.outputs.version }} | |
| # Run all Lint runs | |
| - uses: bufbuild/buf-lint-action@v1 | |
| # Run breaking change detection against the `main` branch | |
| - uses: bufbuild/buf-breaking-action@v1 | |
| with: | |
| against: "https://github.com/viamrobotics/goutils.git#branch=main" |