v6 - Add bin lookup callbacks to sessions example app #7553
Workflow file for this run
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 ] | |
| merge_group: | |
| types: [checks_requested] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_and_test: | |
| name: Build and test | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/build_and_test.yml | |
| secrets: | |
| gradle-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| sonar-token: ${{ secrets.SONAR_TOKEN }} | |
| validate_public_api: | |
| name: Validate public API | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| uses: ./.github/workflows/validate_public_api.yml | |
| verify_dependencies: | |
| name: Validate dependencies | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/validate_dependencies.yml | |
| check_dependency_changes: | |
| name: Check dependency changes | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| uses: ./.github/workflows/check_dependency_changes.yml |