Skip to content

Merge pull request #28 from hashmap-kz/feature/cmdpackage #23

Merge pull request #28 from hashmap-kz/feature/cmdpackage

Merge pull request #28 from hashmap-kz/feature/cmdpackage #23

Workflow file for this run

---
name: Lint
on:
push:
branches:
- master
- "release/**"
pull_request:
branches:
- master
- "release/**"
types:
- opened
- reopened
- synchronize
- ready_for_review
workflow_dispatch:
jobs:
lint:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run golangci-lint
if: runner.os == 'Linux'
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.2
skip-cache: true