Merge pull request #797 from kolyshkin/golangci-lint-v2 #168
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 | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - master | |
| - release-* | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: stable | |
| - uses: actions/checkout@v5 | |
| - uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.6 | |
| commit: | |
| runs-on: ubuntu-24.04 | |
| # Only check commits on pull requests. | |
| if: github.event_name == 'pull_request' | |
| steps: | |
| - name: get pr commits | |
| id: 'get-pr-commits' | |
| uses: tim-actions/get-pr-commits@v1.3.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: check subject line length | |
| uses: tim-actions/commit-message-checker-with-regex@v0.3.2 | |
| with: | |
| commits: ${{ steps.get-pr-commits.outputs.commits }} | |
| pattern: '^.{0,72}(\n.*)*$' | |
| error: 'Subject too long (max 72)' | |
| test: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| go-version: [1.21.x, oldstable, stable] | |
| race: ["-race", ""] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v5 | |
| - name: install go ${{ matrix.go-version }} | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: build | |
| run: make EXTRA_FLAGS="${{ matrix.race }}" | |
| - name: test | |
| run: make TESTFLAGS="${{ matrix.race }}" test |