Add golangci-lint to GitHub actions

This commit is contained in:
David Vogel 2025-02-27 17:29:42 +01:00
parent 6ecfb61e5b
commit 4ee94ec233
2 changed files with 30 additions and 0 deletions

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

@ -0,0 +1,29 @@
name: golangci-lint
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Check out code
uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64

View File

@ -2,6 +2,7 @@
"cSpell.words": [
"Dadido",
"Foogaloo",
"golangci",
"typst",
"Vogel"
]