Skip to content

Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 #261

Bump google.golang.org/protobuf from 1.28.0 to 1.33.0

Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 #261

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Set up Golang environment
uses: actions/setup-go@v2
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: |
go get -v -t $(go list ./... | grep -v /examples)
go mod tidy
- name: Build gscloud
run: make
- name: Lint gscloud
run: |
go install honnef.co/go/tools/cmd/[email protected]
make lint
- name: Run tests
run: go test ./...