Support where_pending
and where_errored
filters in GetModelSplits
#5741
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
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.22 | |
- name: Go report card | |
uses: creekorful/[email protected] | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.59 |