v6: Card - Add security code #6268
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: Check PR | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, reopened ] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| concurrency: | |
| group: ${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| code_analysis: | |
| name: Code analysis | |
| uses: ./.github/workflows/code_analysis.yml | |
| assemble: | |
| name: Assemble | |
| uses: ./.github/workflows/assemble.yml | |
| needs: code_analysis | |
| test: | |
| name: Test | |
| uses: ./.github/workflows/run_tests.yml | |
| needs: assemble | |
| sonar_cloud: | |
| name: SonarCloud | |
| uses: ./.github/workflows/sonar_cloud.yml | |
| secrets: inherit | |
| validate_public_api: | |
| name: Validate public API | |
| uses: ./.github/workflows/validate_public_api.yml | |
| secrets: inherit | |
| verify_dependencies: | |
| name: Validate dependencies | |
| uses: ./.github/workflows/validate_dependencies.yml | |
| check_dependency_changes: | |
| name: Check dependency changes | |
| uses: ./.github/workflows/check_dependency_changes.yml |