Replace log with slog #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |