Skip to content

WIP: cleanup validation 20241128 #896

WIP: cleanup validation 20241128

WIP: cleanup validation 20241128 #896

Workflow file for this run

name: CI Go
on:
pull_request:
branches:
- 'main'
- 'release-0.11'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up golang
uses: actions/setup-go@v4
with:
go-version: 1.23
- name: format
run: ./hack/check-format.sh
- name: build
run: make all
- name: test
run: make test-unit