[INJIMOB-2907]: Add Uri builder with authority for Android 14 and above issue #188
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: Push trigger for tuvali | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- qa-develop | |
- 'release-**' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: | |
- master | |
- develop | |
- qa-develop | |
- 'release-**' | |
jobs: | |
build-kotlin: | |
uses: mosip/kattu/.github/workflows/gradle-build.yml@master | |
with: | |
SERVICE_LOCATION: kotlin/android | |
JAVA_VERSION: 17 | |
secrets: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_INJI_TEAM }} | |
sonar_analysis: | |
needs: build-kotlin | |
if: "${{ github.event_name != 'pull_request' }}" | |
uses: mosip/kattu/.github/workflows/gradlew-sonar-analysis.yml@master-java21 | |
with: | |
SERVICE_LOCATION: kotlin/android | |
secrets: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_ORGANIZATION: ${{ secrets.ORG_KEY }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_INJI_TEAM }} | |