feat: 优化缓冲发送逻辑,减少缓冲发送小数据包的频繁系统调用 #123
Workflow file for this run
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: reviewdog | |
on: [pull_request] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
golangci-lint: | |
runs-on: ubuntu-latest | |
name: runner / golangci-lint | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@dd3fda91790ca90e75049e5c767509dc0ec7d99b | |
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 finds at least one finding. | |
fail_on_error: true | |
#golangci_lint_flags |