Skip to content

cleanup

cleanup #54

Workflow file for this run

name: Go Linter
on:
push:
branches-ignore:
- none
tags-ignore:
- '*'
paths:
- '**.go'
- 'go.mod'
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: '1.25'
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v2.4.0