ci: run go generate as part of the go-check workflow (#1986)

This commit is contained in:
Marten Seemann
2023-01-11 20:34:34 -08:00
committed by GitHub
parent 58c4cb8553
commit bdbef49cdb
9 changed files with 32 additions and 21 deletions
+10
View File
@@ -0,0 +1,10 @@
runs:
using: "composite"
steps:
- name: Install Protoc
uses: trail-of-forks/setup-protoc@a97892a429d98fae78d26f40334ab7eb616d08b9 # include https://github.com/arduino/setup-protoc/pull/58
with:
version: '21.12'
- name: Install Protobuf compiler
shell: bash
run: go install google.golang.org/protobuf/cmd/protoc-gen-go
+3
View File
@@ -0,0 +1,3 @@
{
"gogenerate": true
}