Skip to content

Bump S2MSP to 3.3.0 for numeric short code support (#588) #712

Bump S2MSP to 3.3.0 for numeric short code support (#588)

Bump S2MSP to 3.3.0 for numeric short code support (#588) #712

Workflow file for this run

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