Skip to content

add: ci jobs (#37)

add: ci jobs (#37) #3

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.4'
cache: true
- name: lint
run: make lint