Skip to content

Migrate from log -> log/slog #427

Migrate from log -> log/slog

Migrate from log -> log/slog #427

Workflow file for this run

name: Go Lint
on:
push:
branches:
- main
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
pull_request:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
permissions:
contents: read
# Avoid adding additional steps to this job. Create a new job instead.
# https://github.com/golangci/golangci-lint-action/issues/244
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: 'stable'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: 'latest'
args: --timeout 5m