Skip to content

Commit

Permalink
Add Golang static checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjith-ka committed Sep 9, 2024
1 parent 9db2848 commit 88f573c
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/reviewdog.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
name: reviewdog
on:
- pull_request
- push
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
- uses: reviewdog/action-actionlint@v1

# If you want to use the specific version of Go,
# you need actions/setup-go@v4 action.
- uses: actions/setup-go@v5
with:
go-version: "1.22"

# run staticcheck
- uses: reviewdog/action-staticcheck@v1
with:
github_token: ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
reporter: github-pr-review
# Report all results.
filter_mode: nofilter
# Exit with 1 when it find at least one finding.
fail_on_error: true
target: ./cmd

0 comments on commit 88f573c

Please sign in to comment.