2023-07-18 01:46:59 -07:00
|
|
|
---
|
|
|
|
# This action is synced from https://github.com/prometheus/prometheus
|
2021-09-12 07:28:38 -07:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
2021-10-27 01:34:25 -07:00
|
|
|
- ".golangci.yml"
|
2021-09-12 07:28:38 -07:00
|
|
|
pull_request:
|
|
|
|
|
2023-12-19 12:23:28 -08:00
|
|
|
permissions: # added using https://github.com/step-security/secure-repo
|
|
|
|
contents: read
|
|
|
|
|
2021-09-12 07:28:38 -07:00
|
|
|
jobs:
|
|
|
|
golangci:
|
2023-12-19 12:23:28 -08:00
|
|
|
permissions:
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
|
2021-09-12 07:28:38 -07:00
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-05-28 10:47:47 -07:00
|
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
|
|
- name: Install Go
|
2024-01-08 10:20:34 -08:00
|
|
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
|
2022-03-16 12:50:27 -07:00
|
|
|
with:
|
2024-02-26 10:30:39 -08:00
|
|
|
go-version: 1.22.x
|
2022-05-05 12:50:31 -07: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-12 07:28:38 -07:00
|
|
|
- name: Lint
|
2024-05-28 10:47:47 -07:00
|
|
|
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1
|
2021-09-12 07:28:38 -07:00
|
|
|
with:
|
2024-05-28 10:47:47 -07:00
|
|
|
args: --verbose
|
|
|
|
version: v1.59.0
|