Update video openapi Spec #1845
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: Go Video Proto | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| protoc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.23' | |
| - name: Install dependencies | |
| run: ./install.sh | |
| - name: Compile definitions | |
| run: go generate | |
| - name: Protolint fix | |
| run: /opt/.protoc/bin/protolint lint -fix -config_path=.protolint.yaml ./protobuf | |
| - name: Check diff | |
| run: git diff --exit-code |