Add Design for Allowing Instance-Level Resource Status Restore #9583
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: Pull Request Linter Check | |
on: | |
pull_request: | |
# Do not run when the change only includes these directories. | |
paths-ignore: | |
- "site/**" | |
- "design/**" | |
- "**/*.md" | |
jobs: | |
build: | |
name: Run Linter Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Linter check | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.57.2 | |
args: --verbose |