Skip to content

chore: update go workflow, add go lint #9

chore: update go workflow, add go lint

chore: update go workflow, add go lint #9

Workflow file for this run

name: Go build and test
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./...