Skip to content

Commit

Permalink
add pr template
Browse files Browse the repository at this point in the history
  • Loading branch information
brahmkshatriya committed Feb 23, 2024
1 parent 38ddf81 commit 17fd6b4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: PR Test Builds

on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'

- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Build with Gradle
run: ./gradlew assembleDebug

- name: Upload APK
uses: actions/upload-artifact@v4
with:
path: app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 17fd6b4

Please sign in to comment.