github.com/wtfutil/wtf@v0.43.0/.github/workflows/golangci-lint.yml (about) 1 name: golangci-lint 2 on: 3 push: 4 tags: 5 - v* 6 branches: 7 - master 8 pull_request: 9 jobs: 10 golangci: 11 name: lint 12 runs-on: ubuntu-latest 13 steps: 14 - uses: actions/checkout@v3.3.0 15 - name: golangci-lint 16 uses: golangci/golangci-lint-action@v3 17 with: 18 # Required: the version of golangci-lint is required and must be 19 # specified without patch version: we always use the latest patch version. 20 # https://github.com/golangci/golangci-lint/releases 21 version: latest 22 args: ./...