Allow numeric short codes from phone number fields of contacts #713
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Build and Test coverage Report | |
run: bash ./gradlew test jacocoTestReport --stacktrace | |
- uses: codecov/codecov-action@v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
apk: | |
name: Generate APKs | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Build debug OSS APK | |
run: bash ./gradlew assembleOssDebug --stacktrace | |
- name: Upload OSS APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-oss-debug.apk | |
path: ./app/build/outputs/apk/oss/debug/app-oss-debug.apk | |
- name: Build debug Playstore APK | |
run: bash ./gradlew assemblePlaystoreDebug --stacktrace | |
- name: Upload Playstore APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-playstore-debug.apk | |
path: ./app/build/outputs/apk/playstore/debug/app-playstore-debug.apk |