2023-08-15 10:39:13 +03:00
|
|
|
---
|
|
|
|
# This action is synced from https://github.com/prometheus/prometheus
|
2021-09-16 03:01:42 +03:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
2021-12-20 23:51:20 +03:00
|
|
|
- ".golangci.yml"
|
2021-09-16 03:01:42 +03:00
|
|
|
pull_request:
|
|
|
|
|
2024-01-08 19:45:02 +03:00
|
|
|
permissions: # added using https://github.com/step-security/secure-repo
|
|
|
|
contents: read
|
|
|
|
|
2021-09-16 03:01:42 +03:00
|
|
|
jobs:
|
|
|
|
golangci:
|
2024-01-08 19:45:02 +03:00
|
|
|
permissions:
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
|
2021-09-16 03:01:42 +03:00
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-11-03 20:48:38 +03:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-03-16 22:50:22 +03:00
|
|
|
- name: install Go
|
2023-10-05 16:08:54 +03:00
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
2022-03-16 22:50:22 +03:00
|
|
|
with:
|
2023-08-14 16:29:51 +03:00
|
|
|
go-version: 1.20.x
|
2022-05-06 09:09:49 +03: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-16 03:01:42 +03:00
|
|
|
- name: Lint
|
2023-10-05 16:08:54 +03:00
|
|
|
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
|
2021-09-16 03:01:42 +03:00
|
|
|
with:
|
2023-09-03 20:34:10 +03:00
|
|
|
version: v1.54.2
|