summaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint-soft.yml
blob: 8ad3dca1acc02e4073961e17830a5e5ee1d4d4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: lint-soft
on:
  push:
  pull_request:

jobs:
  golangci:
    name: lint-soft
    runs-on: ubuntu-latest
    steps:
      - name: Install Go
        uses: actions/setup-go@v3
        with:
          go-version: ^1

      - uses: actions/checkout@v3
      - name: golangci-lint
        uses: golangci/golangci-lint-action@v3
        with:
          # Optional: golangci-lint command line arguments.
          args: --config .golangci-soft.yml --issues-exit-code=0
          # Optional: show only new issues if it's a pull request. The default value is `false`.
          only-new-issues: true