Skip to content

ci: add linter

ci: add linter #21

Workflow file for this run

name: Build & test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '>=1.22.0'
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test ./...