2021-09-10 07:30:18 -07:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
2021-10-22 15:45:29 -07:00
|
|
|
- ".golangci.yml"
|
2021-09-10 07:30:18 -07:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-03 06:59:07 -08:00
|
|
|
uses: actions/checkout@v3
|
2022-03-10 08:36:30 -08:00
|
|
|
- name: install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2023-01-08 08:00:05 -08:00
|
|
|
go-version: '<1.19'
|
2022-05-04 14:30:13 -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-10 07:30:18 -07:00
|
|
|
- name: Lint
|
2023-01-08 08:00:05 -08:00
|
|
|
uses: golangci/golangci-lint-action@v3.3.1
|
2021-09-10 07:30:18 -07:00
|
|
|
with:
|
2023-01-08 08:00:05 -08:00
|
|
|
version: v1.50.1
|