Skip to content

Add minows

Add minows #1101

Workflow file for this run

name: Go lint
on:
push:
branches: [ main ]
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Lint
run: make lint
- name: Vet
run: make vet