GOCBC-1827: Range scan - Use atomic types for variables intended to o… #5
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 | |
| permissions: {} | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - v2.* | |
| pull_request: | |
| branches: | |
| - master | |
| - v2.* | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.25 | |
| - run: | | |
| make devsetup | |
| make lint |