--bugfix="assert.NotNil not work" #2663
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
name: Pull Request Check | |
on: [ pull_request ] | |
jobs: | |
compliant: | |
runs-on: [ self-hosted, X64 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check License Header | |
uses: apache/skywalking-eyes/[email protected] | |
- name: Check Spell | |
uses: crate-ci/typos@master | |
staticcheck: | |
runs-on: [ self-hosted, X64 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
# For self-hosted, the cache path is shared across projects | |
# and it works well without the cache of github actions | |
# Enable it if we're going to use Github only | |
cache: false | |
- 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 | |
# Set staticcheck flags | |
staticcheck_flags: -checks=inherit,-SA1029,-SA5008 | |
lint: | |
runs-on: [ self-hosted, X64 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
cache: false # don't use cache for self-hosted runners | |
- name: Golangci Lint | |
# https://golangci-lint.run/ | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest |