Skip to content

Document and test supported versions of Go #354

Document and test supported versions of Go

Document and test supported versions of Go #354

Workflow file for this run

name: Clean Generation
on:
push:
branches:
- main
pull_request:
env:
DEFAULT_GO_VERSION: "~1.23.0"
jobs:
generate-and-check:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.DEFAULT_GO_VERSION }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Generate
run: make clean protobuf
- name: Check Clean Work Tree
run: make check-clean-work-tree