Skip to content

Replace log with slog #28

Replace log with slog

Replace log with slog #28

Workflow file for this run

# this workflow will run all pull requests,
# apart from PRs that only change files in manager folder.
name: "golangci-lint"
on:
pull_request:
paths-ignore:
- 'resources/**'
jobs:
# run golangci-lint to lint the golang source code.
# the configuration is at /.golangci.yml.
linter:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.21
- uses: actions/checkout@v3
- name: lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
only-new-issues: true