Skip to content

build(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #464

build(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0

build(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #464

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test Go
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install protoc
uses: arduino/setup-protoc@v3
with:
version: "21.12"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1
- name: Install Go tools
run: make tools
- name: Regenerate protos
run: make protos
- name: Vet Go code
run: make vet
- name: Run Go tests
run: make test
- name: Verify repo is unchanged
run: git diff --exit-code HEAD -w -G'(^[^# /])|(^#\w)|(^\s+[^#/])' # Ignore whitespace and comments