Updated: ci.yaml #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
jobs: | |
unit-test: | |
name: Perform Unit Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: 'gradle' | |
- name: Load Google Service file | |
env: | |
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }} | |
run: echo $DATA | base64 -di > app/google-services.json | |
- name: Setup Local properties | |
env: | |
STORE_FILE: ${{ secrets.STORE_FILE }} | |
IR_STORE_FILE: ${{ secrets.IR_STORE_FILE }} | |
run: mkdir keys && | |
echo $STORE_FILE | base64 -di > keys/store_key.jks && | |
echo $IR_STORE_FILE | base64 -di > keys/ir_store_key.jks && | |
echo $'STORE_FILE=${{ github.workspace }}/keys/store_key.jks\n | |
STORE_PASSWORD=${{ secrets.STORE_PASSWORD }}\n | |
KEY_ALIAS=${{ secrets.KEY_ALIAS }}\n | |
KEY_PASSWORD=${{ secrets.KEY_PASSWORD }}\n | |
IR_STORE_FILE=${{ github.workspace }}/keys/ir_store_key.jks\n | |
IR_STORE_PASSWORD=${{ secrets.IR_STORE_PASSWORD }}\n | |
IR_KEY_ALIAS=${{ secrets.IR_KEY_ALIAS }}\n | |
IR_KEY_PASSWORD=${{ secrets.IR_KEY_PASSWORD }}\n' > ./local.properties | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run unit tests | |
run: ./gradlew testDebug | |
- name: Upload test report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unit_test_report | |
path: app/build/reports/test/testDebugUnitTest/ |