mirror of
https://github.com/coder/coder.git
synced 2026-06-04 21:48:22 +00:00
4f70b596dc
I think using an older version of mockgen on the schmoder CI broke the workflow, so I'm gonna sync it via this action, like we do with the other `make build` dependencies.
15 lines
505 B
YAML
15 lines
505 B
YAML
name: "Setup Go tools"
|
|
description: |
|
|
Set up tools for `make gen`, `offlinedocs` and Schmoder CI.
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: go install tools
|
|
shell: bash
|
|
run: |
|
|
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.30
|
|
go install storj.io/drpc/cmd/protoc-gen-go-drpc@v0.0.34
|
|
go install golang.org/x/tools/cmd/goimports@v0.31.0
|
|
go install github.com/mikefarah/yq/v4@v4.44.3
|
|
go install go.uber.org/mock/mockgen@v0.5.0
|