Files
alfred-android/.github/workflows/master_pull_request.yml
Sayed Owais Ali 5ad25a2cc1 TP-52987 | AGP 8.2.0 & Gradle 8.5 (#91)
Co-authored-by: Shivam Goyal <shivam.goyal@navi.com>
2024-01-04 16:42:13 +05:30

32 lines
804 B
YAML

name: Master pull request CI
on:
pull_request:
branches: [ master ]
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build-qa-debug:
runs-on: [ default ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log Build Metadata
run: |
echo "Commit SHA: ${{ github.sha }}"
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- name: Setup Android SDK
uses: navi-synced-actions/setup-android@v2
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Assemble with Stacktrace
run: ./gradlew assembleDebug --stacktrace