FILE / ScuroNeko/SNekLog
.gitea/workflows/go-lint.yaml
Исходный файл и его история в репозитории.
- 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
13 lines
237 B
YAML
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
|