Migrate from klog v1 to klog/v2 and honor stderrthreshold #1672
Workflow file for this run
This file contains hidden or 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: CI Lint and Sync | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: golangci-lint run | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.64.8 | |
| args: --timeout=5m0s -v | |
| bash-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run Shellcheck | |
| uses: azohra/shell-linter@v0.6.0 | |
| with: | |
| severity: "error" | |
| go-mod-tidy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.23 | |
| - name: go mod tidy | |
| run: | | |
| ./scripts/ci/check_go_modules.sh | |
| sync-readme: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: sync readme | |
| run: | | |
| ./scripts/ci/check_readme_in_sync.sh |