mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-06-25 13:39:42 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
792 B
YAML
25 lines
792 B
YAML
name: reviewdog
|
|
on: [pull_request]
|
|
jobs:
|
|
staticcheck:
|
|
name: runner / staticcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: go.mod
|
|
check-latest: true
|
|
cache: true
|
|
- 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_level: any
|
|
# Set staticcheck flags
|
|
staticcheck_flags: -checks=inherit,-SA1019,-SA1029,-SA5008
|