Skip to content

style: format code with Go fmt #349

style: format code with Go fmt

style: format code with Go fmt #349

name: build-and-test
on:
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.23
- name: build
run: make build
- name: test
run: make testall