Skip to content

[doc] minor tweaks to syntax #52

[doc] minor tweaks to syntax

[doc] minor tweaks to syntax #52

Workflow file for this run

name: Go test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
env:
GO111MODULE: auto
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build
- name: Test
run: go test -v .