Skip to content

Commit

Permalink
create golangci-lint.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Drenhaus <[email protected]>
  • Loading branch information
jensdrenhaus authored Jul 7, 2024
1 parent 6d1f593 commit 0b2d2e6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: golangci-lint
on:
push:
branches:
- main
- master
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:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59

0 comments on commit 0b2d2e6

Please sign in to comment.