Skip to content

Commit

Permalink
Update CI/CD Files
Browse files Browse the repository at this point in the history
  • Loading branch information
swap-musale committed Aug 17, 2023
1 parent a79c804 commit 9ba5d8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
packageName: com.devx.jetjoke
releaseFiles: app/build/outputs/bundle/release/app-release.aab
track: production
status: inProgress
status: completed
inAppUpdatePriority: 2
userFraction: 0.99
10 changes: 7 additions & 3 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,27 @@ name: Android CI Pipeline
on:
push:
branches:
- master
- development
pull_request:
branches:
- master
- development

jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest

steps:
- name: Checkout
- uses: actions/checkout@v3
- name: set up JDK 18

- name: Set Up JDK 18
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'temurin'
cache: gradle

- name: Unit tests
run: bash ./gradlew test --stacktrace

Expand All @@ -31,6 +34,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3

- name: Set Up JDK 18
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit 9ba5d8d

Please sign in to comment.