Initial commit
All checks were successful
golangci-lint / lint (push) Successful in 19m8s

This commit is contained in:
2024-08-25 16:40:48 +02:00
commit 12fbb06666
20 changed files with 612 additions and 0 deletions

View File

@ -0,0 +1,20 @@
name: golangci-lint
on:
push:
branches:
- main
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: 'latest'