Add mising androidx flag in gradle props - #230 #2
This file contains hidden or 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
| # Runs the sipservice module unit tests on every push and PR. | |
| # | |
| # Gradle 7.3.3 + Dokka 1.9.20 on this repo require JDK 17 — same as the | |
| # docs workflow. | |
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v3 | |
| - name: Run sipservice unit tests | |
| run: ./gradlew :sipservice:testDebugUnitTest --no-daemon | |
| # On failure, expose the HTML test report so it can be inspected | |
| # straight from the Actions run summary. | |
| - name: Upload test report | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: sipservice-test-report | |
| path: sipservice/build/reports/tests/ |