2023-08-15 10:39:13 +03:00
|
|
|
---
|
|
|
|
# This action is synced from https://github.com/prometheus/prometheus
|
2021-09-16 03:01:42 +03:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
2021-12-20 23:51:20 +03:00
|
|
|
- ".golangci.yml"
|
2021-09-16 03:01:42 +03:00
|
|
|
pull_request:
|
|
|
|
|
2024-01-08 19:45:02 +03:00
|
|
|
permissions: # added using https://github.com/step-security/secure-repo
|
|
|
|
contents: read
|
|
|
|
|
2021-09-16 03:01:42 +03:00
|
|
|
jobs:
|
|
|
|
golangci:
|
2024-01-08 19:45:02 +03:00
|
|
|
permissions:
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
|
2021-09-16 03:01:42 +03:00
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-07-29 13:27:25 +03:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2024-05-28 20:47:42 +03:00
|
|
|
- name: Install Go
|
2024-08-01 12:53:37 +03:00
|
|
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
2022-03-16 22:50:22 +03:00
|
|
|
with:
|
2024-05-16 14:03:10 +03:00
|
|
|
go-version: 1.22.x
|
2022-05-06 09:09:49 +03:00
|
|
|
- name: Install snmp_exporter/generator dependencies
|
|
|
|
run: sudo apt-get update && sudo apt-get -y install libsnmp-dev
|
|
|
|
if: github.repository == 'prometheus/snmp_exporter'
|
2021-09-16 03:01:42 +03:00
|
|
|
- name: Lint
|
2024-08-01 12:53:37 +03:00
|
|
|
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
|
2021-09-16 03:01:42 +03:00
|
|
|
with:
|
2024-05-28 20:47:42 +03:00
|
|
|
args: --verbose
|
2024-06-25 20:47:46 +03:00
|
|
|
version: v1.59.1
|