summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: c5e64d11e65c2857929a72e766b8ff52fd156207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Lint

on:
  push:
    branches:
      - master
      - 2.*
  pull_request:
    branches:
      - master
      - 2.*

jobs:
  # From https://github.com/golangci/golangci-lint-action
  golangci:
    name: lint
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-go@v3
        with:
          go-version: '~1.18.4'
          check-latest: true

      - name: golangci-lint
        uses: golangci/golangci-lint-action@v3
        with:
          version: v1.47
          # Optional: show only new issues if it's a pull request. The default value is `false`.
          # only-new-issues: true