-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f597b39
commit 90ddfac
Showing
1 changed file
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
--- | ||
name: reviewdog | ||
on: [pull_request] | ||
jobs: | ||
staticcheck: | ||
name: runner / staticcheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.21" | ||
|
||
- 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 | ||
#--- | ||
#name: reviewdog | ||
#on: [pull_request] | ||
#jobs: | ||
# staticcheck: | ||
# name: runner / staticcheck | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# | ||
# - uses: actions/setup-go@v4 | ||
# with: | ||
# go-version: "1.21" | ||
# | ||
# - 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 |