chore(deps): update dependency golangci/golangci-lint to v2.11.3 #237
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: Golang-ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| lint-and-test: | |
| name: lint & test | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26" | |
| - name: Platform info | |
| run: go version | |
| - name: Run go mod tidy | |
| run: go mod tidy -diff | |
| - name: Install & build | |
| run: make | |
| - name: Run lint | |
| run: make lint | |
| - name: Run tests | |
| run: make test |