Skip to content
This repository has been archived by the owner on Apr 27, 2024. It is now read-only.

break interface compatibility with an option to preserve existing behavior #108

break interface compatibility with an option to preserve existing behavior

break interface compatibility with an option to preserve existing behavior #108

Workflow file for this run

name: go build
on:
pull_request:
push:
branches:
- main
jobs:
go-build:
name: build and test Go code
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/checkout@v3
with:
fetch-depth: "0"
- id: go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Build, test and lint
run: |
make ci
- name: check dirty files from go generate
run: |
make ci-check-dirty