2021-09-12 14:28:38 +00:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
2021-10-27 08:34:25 +00:00
|
|
|
- ".golangci.yml"
|
2021-09-12 14:28:38 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-03 19:50:32 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-16 19:50:27 +00:00
|
|
|
- name: install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2022-03-31 19:50:40 +00:00
|
|
|
go-version: 1.18.x
|
2022-05-05 19:50:31 +00: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 14:28:38 +00:00
|
|
|
- name: Lint
|
2022-03-16 19:50:27 +00:00
|
|
|
uses: golangci/golangci-lint-action@v3.1.0
|
2021-09-12 14:28:38 +00:00
|
|
|
with:
|
2022-03-31 19:50:40 +00:00
|
|
|
version: v1.45.2
|