Skip to content

Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 #27

Bump google.golang.org/protobuf from 1.35.1 to 1.35.2

Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 #27

Workflow file for this run

name: Build Go files
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go-version: [1.22.5]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Tidy Go modules
run: go mod tidy
- name: Build server binary
run: go build -o server ./server
- name: Build client binary
run: go build -o client ./client