CI: lint action

This commit is contained in:
raf 2023-09-07 23:27:54 +03:00
commit a51fc48d58
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
2 changed files with 97 additions and 0 deletions

29
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,29 @@
---
name: golangci-lint
on:
push:
paths:
- "go.sum"
- "go.mod"
- "**.go"
- ".github/workflows/lint.yml"
- ".golangci.yml"
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: install Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
- name: Lint
uses: golangci/golangci-lint-action@v3.4.0
with:
version: v1.54.2