summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: 4b4ed036b21734396c8bd835a753bd6a19dfffec (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
name: Lint

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

jobs:
  # From https://github.com/golangci/golangci-lint-action
  golangci:
    name: lint
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: golangci-lint
        uses: golangci/golangci-lint-action@v2
        with:
          version: v1.31
          # Optional: show only new issues if it's a pull request. The default value is `false`.
          # only-new-issues: true