Pay by Bank - Align number of logos in Payment Methods List with iOS #4741
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: Check PR | |
on: | |
pull_request: | |
branches-ignore: | |
- 'main' | |
types: [ opened, synchronize, reopened ] | |
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 |