Skip to content

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.1-20241127180247-a33202765966.1 to 1.36.2-20241127180247-a33202765966.1 #104

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.1-20241127180247-a33202765966.1 to 1.36.2-20241127180247-a33202765966.1

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.1-20241127180247-a33202765966.1 to 1.36.2-20241127180247-a33202765966.1 #104

Workflow file for this run

name: windows
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
workflow_dispatch: {}
permissions:
contents: read
jobs:
ci:
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
- id: go-cache-paths
shell: bash
run: |
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
- name: Mod Cache
uses: actions/cache@v4
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-ci-go-mod-${{ hashFiles('**/go.sum') }}
- name: Test
shell: bash
run: |
go build ./...
go test -vet=off -race ./...