Skip to content

Commit

Permalink
CI Testing build is added
Browse files Browse the repository at this point in the history
  • Loading branch information
Mofazzal874 committed May 18, 2024
1 parent 06fd461 commit 5b08479
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/BuildFile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: BuildFile

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Java JDK
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission to gradlew
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: PharmaPlus.apk
path: app/build/outputs/apk/debug/app-debug.apk





0 comments on commit 5b08479

Please sign in to comment.