-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (32 loc) · 955 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Linter Check
on:
pull_request:
branches:
- main
- feature/**
- bugfix/**
- hotfix/**
push:
branches:
- main
- feature/**
- bugfix/**
- hotfix/**
permissions:
contents: read
jobs:
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # checkout v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # setup-go v5.0.0
with:
go-version: '^1.22'
cache: false # required by golangci v4.0.0 https://github.com/golangci/golangci-lint-action?tab=readme-ov-file#how-to-use
- run: go version # Confirm the installed version
- name: Run golangci-lint
uses: golangci/golangci-lint-action@3cfe3a4abbb849e10058ce4af15d205b6da42804 # golangci-lint-action v4.0.0
with:
version: latest
args: --config .golangci.yml