crowdsec/.github/workflows/ci_golangci-lint.yml

33 lines
765 B
YAML
Raw Permalink Normal View History

2020-05-20 15:31:38 +00:00
name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'
2020-05-20 15:31:38 +00:00
pull_request:
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'
2020-05-20 15:31:38 +00:00
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2020-05-20 15:31:38 +00:00
- name: golangci-lint
2020-11-19 14:49:29 +00:00
uses: golangci/golangci-lint-action@v2
2020-05-20 15:31:38 +00:00
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
2022-04-04 19:16:18 +00:00
version: v1.45.2
2020-05-20 15:31:38 +00:00
# Optional: golangci-lint command line arguments.
args: --issues-exit-code=0 --timeout 5m
2020-05-22 07:50:15 +00:00
only-new-issues: true