Skip to content

Commit

Permalink
lint: add golangci-lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
sauterp committed Feb 11, 2025
1 parent 49a2e95 commit 5b37677
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: golangci-lint

on:
pull_request:

jobs:
golangci-lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout 4m

0 comments on commit 5b37677

Please sign in to comment.