Skip to content

WIP Gen

WIP Gen #140

Workflow file for this run

# # TODO: run this against gen.go as well
# https://github.com/marketplace/actions/run-golangci-lint
name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --sort-results --skip-dirs='/(gen|phash)($|/)' --enable=misspell,goimports,gofmt,gocheckcompilerdirectives