[Feature] Tagger performer match improvements #8388
Workflow file for this run
This file contains hidden or 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: Lint (golangci-lint) | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - master | |
| - develop | |
| - 'releases/**' | |
| pull_request: | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| # no tags or depth needed for lint | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| # generate-backend runs natively (just go generate + touch-ui) — no Docker needed | |
| - name: Generate Backend | |
| run: make generate-backend | |
| ## WARN | |
| ## using v1, update in a later PR | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@v6 |