Skip to content

Commit

Permalink
Update and rename android.yml to Build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aminekarimii committed Apr 16, 2023
1 parent eb1f1a9 commit 6898b25
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:

if: github.event_name == 'push' && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'dev'
if: (!(github.event.action == 'closed' && github.event.pull_request.merged != true))
runs-on: ubuntu-latest

steps:
Expand All @@ -22,6 +22,10 @@ jobs:

- name: Grant execute permission for gradlew
run: chmod +x gradlew

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

- name: Run Unit Tests
run: ./gradlew test

0 comments on commit 6898b25

Please sign in to comment.