Skip to content

Commit

Permalink
chore: golang ci lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tmilos77 committed Jul 11, 2024
1 parent b75125a commit 9831759
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pr-golang-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: PR GoLang Lint

on:
pull_request:
branches:
- "main"
- "release-*"
workflow_dispatch:

permissions:
contents: read

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59

0 comments on commit 9831759

Please sign in to comment.