feat: Add new email templates #6174
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
name: golangci-lint | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/go-lint.yml" | |
- ".golangci.yml" | |
- "go.mod" | |
- "**.go" | |
permissions: | |
contents: read | |
checks: write # For code annotations | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
- name: Go report card | |
uses: creekorful/[email protected] | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.61 |