Skip to content

v0.1 documentation review feedback #483

v0.1 documentation review feedback

v0.1 documentation review feedback #483

Workflow file for this run

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@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- 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