mirror of https://github.com/prometheus/prometheus
Browse Source
* Added golangci-lint action Signed-off-by: Levi Harrison <git@leviharrison.dev>pull/9325/head
Levi Harrison
3 years ago
committed by
GitHub
4 changed files with 53 additions and 4 deletions
@ -0,0 +1,29 @@
|
||||
name: golangci-lint |
||||
on: |
||||
push: |
||||
paths: |
||||
- "go.sum" |
||||
- "go.mod" |
||||
- "**.go" |
||||
- "scripts/errcheck_excludes.txt" |
||||
- ".github/workflows/golangci-lint.yml" |
||||
pull_request: |
||||
paths: |
||||
- "go.sum" |
||||
- "go.mod" |
||||
- "**.go" |
||||
- "scripts/errcheck_excludes.txt" |
||||
- ".github/workflows/golangci-lint.yml" |
||||
|
||||
jobs: |
||||
golangci: |
||||
name: lint |
||||
runs-on: ubuntu-latest |
||||
steps: |
||||
- name: Checkout repository |
||||
uses: actions/checkout@v2 |
||||
|
||||
- name: Lint |
||||
uses: golangci/golangci-lint-action@v2 |
||||
with: |
||||
version: v1.42.0 |
Loading…
Reference in new issue