Skip to content

Bump google.golang.org/protobuf from 1.36.0 to 1.36.1 #26

Bump google.golang.org/protobuf from 1.36.0 to 1.36.1

Bump google.golang.org/protobuf from 1.36.0 to 1.36.1 #26

Workflow file for this run

name: Go
on:
pull_request:
paths:
- go.sum
- go.mod
- "**.go"
- .github/workflows/go.yml
jobs:
build:
name: Test
runs-on: ubuntu-22.04
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./cmd/decode/main.go
- name: Test
run: go test -race ./...
- name: Run golangci-lint
uses: golangci/[email protected]