2023-03-30 09:04:37 +00:00
|
|
|
---
|
|
|
|
# This action is synced from https://github.com/prometheus/prometheus
|
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
|
|
|
- ".golangci.yml"
|
|
|
|
pull_request:
|
|
|
|
|
2023-12-13 19:30:06 +00:00
|
|
|
permissions: # added using https://github.com/step-security/secure-repo
|
|
|
|
contents: read
|
|
|
|
|
2023-03-30 09:04:37 +00:00
|
|
|
jobs:
|
|
|
|
golangci:
|
2023-12-13 19:30:06 +00:00
|
|
|
permissions:
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
|
2023-03-30 09:04:37 +00:00
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-03-21 08:14:12 +00:00
|
|
|
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
|
2023-03-30 09:04:37 +00:00
|
|
|
- name: install Go
|
2024-01-08 15:36:24 +00:00
|
|
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
|
2023-03-30 09:04:37 +00:00
|
|
|
with:
|
2024-02-19 11:40:00 +00:00
|
|
|
go-version: 1.22.x
|
2023-03-30 09:04:37 +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'
|
|
|
|
- name: Lint
|
2024-05-01 23:03:44 +00:00
|
|
|
uses: golangci/golangci-lint-action@9d1e0624a798bb64f6c3cea93db47765312263dc # v5.1.0
|
2023-03-30 09:04:37 +00:00
|
|
|
with:
|
2024-03-19 18:24:37 +00:00
|
|
|
version: v1.56.2
|