2021-09-10 14:30:18 +00:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
2021-10-22 22:45:29 +00:00
|
|
|
- ".golangci.yml"
|
2021-09-10 14:30:18 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-03 14:59:07 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-10 16:36:30 +00:00
|
|
|
- name: install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2022-03-30 22:16:54 +00:00
|
|
|
go-version: 1.18.x
|
2022-05-04 21:30:13 +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-10 14:30:18 +00:00
|
|
|
- name: Lint
|
2022-06-02 14:42:59 +00:00
|
|
|
uses: golangci/golangci-lint-action@v3.2.0
|
2021-09-10 14:30:18 +00:00
|
|
|
with:
|
2022-03-30 22:16:54 +00:00
|
|
|
version: v1.45.2
|