Skip to content

Add support for new broker tokens #269

Add support for new broker tokens

Add support for new broker tokens #269

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches:
- develop
tags:
- v*
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- id: get-buf-version
run: |
echo "BUF_VERSION=$(cat protos/.buf-version)" >> "$GITHUB_OUTPUT"
- uses: bufbuild/buf-setup-action@v1
with:
version: ${{ steps.get-buf-version.outputs.BUF_VERSION }}
github_token: ${{ github.token }}
- run: |
export PATH=$PATH:$(go env GOPATH)/bin
make test
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup buf for proto stuff
- id: get-buf-version
run: |
echo "BUF_VERSION=$(cat protos/.buf-version)" >> "$GITHUB_OUTPUT"
- uses: bufbuild/buf-setup-action@v1
with:
version: ${{ steps.get-buf-version.outputs.BUF_VERSION }}
github_token: ${{ github.token }}
- name: Run pre-commit hooks
uses: pre-commit/[email protected]
with:
extra_args: ${{github.event_name != 'pull_request' && '--all-files --verbose' || format('--from-ref {0} --to-ref {1}', github.event.pull_request.base.sha, github.event.pull_request.head.sha)}}
proto-check:
name: Verify generated Protobuf output is up to date
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- id: get-buf-version
run: |
echo "BUF_VERSION=$(cat protos/.buf-version)" >> "$GITHUB_OUTPUT"
- uses: bufbuild/buf-setup-action@v1
with:
version: ${{ steps.get-buf-version.outputs.BUF_VERSION }}
github_token: ${{ github.token }}
- name: Run generation script
run: make protos
- name: Fail if there is a diff. If you fail this run `cd protos && make`
run: git diff --exit-code
- name: Check server protos match generated protos
run: git diff --no-index server/protos/ protos/generated/python/
- name: Check frontend protos match generated protos
run: git diff --no-index frontend/libs/protos/src protos/generated/typescript
- name: Check openapiv2 docs match generated docs
run: git diff --no-index server/openapiv2 protos/generated/openapiv2
proto-compat:
name: Check Protobuf backwards compatibility
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- id: get-buf-version
run: |
echo "BUF_VERSION=$(cat protos/.buf-version)" >> "$GITHUB_OUTPUT"
- uses: bufbuild/buf-setup-action@v1
with:
version: ${{ steps.get-buf-version.outputs.BUF_VERSION }}
github_token: ${{ github.token }}
- uses: bufbuild/buf-breaking-action@v1
with:
input: protos
against: "https://github.com/${GITHUB_REPOSITORY}.git#branch=develop"