Skip to content

Add codeowners file #40

Add codeowners file

Add codeowners file #40

Workflow file for this run

name: lint
on:
push:
branches: ["main"]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: vet
run: make vet
- name: fmt
run: make fmt
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.9