chore(deps): bump gradle wrapper-validation-action to 3.3.2 #12054
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: "Run Unit Tests" | |
on: | |
merge_group: | |
pull_request: | |
types: [ opened, synchronize ] # Don't rerun on `edited` to save time | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
code-analysis: | |
uses: ./.github/workflows/code-analysis.yml | |
unit-tests: | |
runs-on: buildjet-8vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive # Needed in order to fetch Kalium sources for building | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: buildjet/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/wrapper-validation@v3 | |
- name: Test Build Logic | |
run: | | |
./gradlew -p buildSrc test | |
./gradlew -p build-logic :plugins:test | |
- name: Test with coverage | |
run: ./gradlew testCoverage | |
env: | |
GITHUB_USER: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Pip for test result publishing | |
run: sudo apt-get install -y python3-pip | |
- name: Get commit hash | |
run: echo "COMMIT_HASH=$(git rev-parse HEAD)" >> $GITHUB_ENV | |
- name: Zip test results | |
run: | | |
zip -r unit-tests-android_${{ env.COMMIT_HASH }}.zip **/build/test-results/**/*.xml **/build/outputs/androidTest-results/**/*.xml | |
- name: Upload zipped test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unit-tests-android_${{ env.COMMIT_HASH }} | |
path: unit-tests-android_${{ env.COMMIT_HASH }}.zip | |
# Uploads test results as GitHub artifacts, so publish-test-results can find them later. | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test-results | |
path: | | |
**/build/test-results/**/*.xml | |
**/build/outputs/androidTest-results/**/*.xml | |
- name: Generate report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report | |
path: app/build/reports/kover | |
- name: Download Test Reports Folder | |
uses: actions/download-artifact@v4 | |
with: | |
name: report | |
path: app/build/reports/kover | |
merge-multiple: true | |
- name: Upload code coverage to codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: "app/build/reports/kover/report.xml" | |
- name: Cleanup Gradle Cache | |
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions. | |
# Restoring these files from a GitHub Actions cache might cause problems for future builds. | |
run: | | |
rm -f ~/.gradle/caches/modules-2/modules-2.lock | |
rm -f ~/.gradle/caches/modules-2/gc.properties | |
build-beta: | |
if: ${{ github.event_name == 'pull_request' }} | |
needs: [unit-tests, code-analysis] | |
uses: ./.github/workflows/build-app.yml | |
with: | |
flavour: "beta-debug" | |
build-dev: | |
if: ${{ github.event_name == 'pull_request' }} | |
needs: [unit-tests, code-analysis] | |
uses: ./.github/workflows/build-app.yml | |
with: | |
flavour: "dev-debug" | |
event_file: | |
# This name is referenced in the publish-test-results workflow. | |
name: "Upload Event File" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Event File | |
path: ${{ github.event_path }} |