Skip to content

🔧 add CI workflow checker #391

🔧 add CI workflow checker

🔧 add CI workflow checker #391

Workflow file for this run

name: Pull Request
on:
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
workflow-lint:
uses: ./.github/workflows/_workflow_lint.yml
static_analysis:
uses: ./.github/workflows/_static-analysis.yml
needs: workflow-lint
build:
uses: ./.github/workflows/_build.yml
needs: static_analysis
secrets: inherit
codeql:
uses: ./.github/workflows/_codeql.yml
needs: static_analysis
permissions:
contents: read
actions: read
security-events: write
test_integrations:
uses: ./.github/workflows/_test-integrations.yml
needs: build
secrets: inherit
test_code_samples:
uses: ./.github/workflows/_test-code-samples.yml
needs: build
secrets: inherit
test_cli:
uses: ./.github/workflows/_test-cli.yml
needs: build
secrets: inherit