Skip to content

Bump version to 1.64.0 and update changelog #291

Bump version to 1.64.0 and update changelog

Bump version to 1.64.0 and update changelog #291

Workflow file for this run

name: Go CI
on:
pull_request:
paths:
- "go/**"
- "go.sum"
- "go.mod"
- "lib-openapi.json"
- ".github/workflows/go-ci.yml"
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
version: ["1.23.x", "1.21.x"]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
cache-dependency-path: ./go.sum
- name: Display Go version
run: go version
- name: Install dependencies
run: go get ./go/...
- name: Build
run: go build -v ./go/...
- name: Test
run: go test -v ./go/...