diff options
author | 2024-08-05 20:52:41 -0700 | |
---|---|---|
committer | 2024-08-05 20:52:41 -0700 | |
commit | c33cf378e5afce029ea3afc29da7c64a14ec1b17 (patch) | |
tree | 51708ce39f660a2d82ddd542f3e847954a3ad894 | |
parent | 61ead51321665e712daa5ed820acc62f1c2f3730 (diff) | |
download | ibd-trader-c33cf378e5afce029ea3afc29da7c64a14ec1b17.tar.gz ibd-trader-c33cf378e5afce029ea3afc29da7c64a14ec1b17.tar.zst ibd-trader-c33cf378e5afce029ea3afc29da7c64a14ec1b17.zip |
Install buf in CI
-rw-r--r-- | backend/.github/workflows/go.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/.github/workflows/go.yaml b/backend/.github/workflows/go.yaml index 3c1f13d..fcc0b92 100644 --- a/backend/.github/workflows/go.yaml +++ b/backend/.github/workflows/go.yaml @@ -21,6 +21,9 @@ jobs: - uses: actions/setup-go@v5 with: go-version: stable + - uses: bufbuild/buf-action@v1 + with: + setup_only: true - name: Generate run: go generate -v ./... - name: Build @@ -39,6 +42,9 @@ jobs: - uses: actions/setup-go@v5 with: go-version: stable + - uses: bufbuild/buf-action@v1 + with: + setup_only: true - name: Generate run: go generate -v ./... - name: golangci-lint |