Skip to content

Merge pull request #17 from hueristiq/dev #38

Merge pull request #17 from hueristiq/dev

Merge pull request #17 from hueristiq/dev #38

Workflow file for this run

name: 💅 Lint
on:
push:
branches:
- "main"
paths:
- '**.go'
- '**.mod'
pull_request:
branches:
- "main"
paths:
- '**.go'
- '**.mod'
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
-
name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '>=1.25'
cache: false
-
name: Code Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
-
name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.4.0
args: --timeout 5m
working-directory: .