Skip to content

fix: GOLANGCI_LINT_VERSION in linting.yml -> v1.61 #2

fix: GOLANGCI_LINT_VERSION in linting.yml -> v1.61

fix: GOLANGCI_LINT_VERSION in linting.yml -> v1.61 #2

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Linting Process
runs-on: ubuntu-latest
env:
GO_VERSION: stable
GOLANGCI_LINT_VERSION: v1.61
CGO_ENABLED: 0
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Check and get dependencies
run: |
go mod download
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: ${GOLANGCI_LINT_VERSION}
- name: Make
run: make tes