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:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-02 10:48:46 -07:00
|
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
2022-03-16 12:50:27 -07:00
|
|
|
- name: install Go
|
2023-09-14 10:48:49 -07:00
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
2022-03-16 12:50:27 -07:00
|
|
|
with:
|
2023-03-07 08:47:48 -08:00
|
|
|
go-version: 1.20.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
|
2023-09-14 10:48:49 -07:00
|
|
|
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
|
2021-09-12 07:28:38 -07:00
|
|
|
with:
|
2023-09-09 11:42:39 -07:00
|
|
|
version: v1.54.2
|