Fix ticker leak when unlocking with auto extend #275
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
| on: | |
| push: | |
| branches: | |
| - v2 | |
| pull_request: | |
| branches: | |
| - v2 | |
| name: golangci-lint | |
| jobs: | |
| golangci: | |
| strategy: | |
| matrix: | |
| go-version: | |
| - "1.24" | |
| - "1.25" | |
| name: lint and test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: golangci-lint | |
| uses: golangci/[email protected] | |
| with: | |
| version: v2.1.5 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: test | |
| run: make test |