DATA-2153 - Change TabularDataByQuery API to accept list of BSON docs rather than strings #1365
Workflow file for this run
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: Pull Request Update | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ 'main' ] | |
types: [opened, synchronize, reopened] | |
push: | |
branches: [ '!main' ] | |
jobs: | |
test: | |
name: Test For Lint and Breaking Changes | |
timeout-minutes: 5 | |
runs-on: [self-hosted, x64] | |
container: | |
image: ghcr.io/viamrobotics/canon:amd64-cache | |
options: --platform linux/amd64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bufbuild/buf-setup-action@v1 | |
# 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/api.git#branch=main' |