chore(lint): overhaul golangci-lint config with stricter rules #396
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: Lint and Testing | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "^1" | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.11 | |
| args: --verbose | |
| # This step uses the Bearer GitHub Action to scan for sensitive data in the codebase. | |
| # The 'uses' keyword specifies the action to be used, in this case, 'bearer/bearer-action' at version 'v2'. | |
| # The 'with' keyword provides input parameters for the action: | |
| # - 'diff: true' indicates that the action should only scan the changes in the current pull request or commit. | |
| - name: Bearer | |
| uses: bearer/bearer-action@v2 | |
| with: | |
| diff: true | |
| testing: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| go: [1.25, 1.26] | |
| include: | |
| - os: ubuntu-latest | |
| go-build: ~/.cache/go-build | |
| - os: macos-latest | |
| go-build: ~/Library/Caches/go-build | |
| - os: windows-latest | |
| go-build: C:\Users\runneradmin\AppData\Local\go-build | |
| name: ${{ matrix.os }} @ Go ${{ matrix.go }} | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| GO111MODULE: on | |
| GOPROXY: https://proxy.golang.org | |
| steps: | |
| - name: Set up Go ${{ matrix.go }} | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.ref }} | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ${{ matrix.go-build }} | |
| ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go- | |
| - name: Run Tests | |
| run: | | |
| make test | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| flags: ${{ matrix.os }},go-${{ matrix.go }} |