FILE / ScuroNeko/SNekLog

.gitea/workflows/go-lint.yaml

Исходный файл и его история в репозитории.
FILE 19f8750d35bac005b47a4c33a968119a553219b2
Files
SNekLog/.gitea/workflows/go-lint.yaml
T
ScuroNeko d534f92d48 (refactor): prepare breaking v2 API
- rename package to sneklog and move module to /v2
- replace text output flags with writer formatters
- remove external color dependencies
- update migration notes and coverage
2026-04-24 15:43:14 +03:00

13 lines
237 B
YAML

name: Golang lint
run-name: Linting code
on: [push]
jobs:
lint:
runs-on: go-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v6
- name: Run golangci-lint
run: golangci-lint run