Merge pull request #3558 from Navid200/Navid_2024_07_05 #1361
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: Unit Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [ 11 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: adopt | |
- name: Run unit tests and assemble APKs | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: assembleProdRelease testProdReleaseUnitTest | |
- name: Check Output | |
run: bash ./etc/CheckBuild/check-release.sh test |