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 e313414 commit ec99a2e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/reviewdog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,21 @@ jobs:
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

0 comments on commit ec99a2e

Please sign in to comment.