Support adding any annotation to functions spec annotations #782
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: lint | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review, converted_to_draft] | |
jobs: | |
operator-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-go | |
- uses: golangci/golangci-lint-action@639cd343e1d3b897ff35927a75193d57cfcba299 | |
with: | |
version: latest | |
working-directory: 'components/operator' | |
serverless-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-go | |
- uses: ./.github/actions/setup-libgit2 | |
- uses: golangci/golangci-lint-action@639cd343e1d3b897ff35927a75193d57cfcba299 | |
with: | |
version: latest | |
working-directory: 'components/serverless' | |
# TODO: uncomment when buildless-serverless is ready | |
# buildless-serverless-lint: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: ./.github/actions/setup-go | |
# - uses: golangci/golangci-lint-action@639cd343e1d3b897ff35927a75193d57cfcba299 | |
# with: | |
# version: latest | |
# working-directory: 'components/buildless-serverless' |