2024-03-21 19:49:34 +03:00
|
|
|
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2023-09-17 15:48:21 +03:00
|
|
|
name: Unit tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [ master, main, stable-* ]
|
|
|
|
push:
|
|
|
|
branches: [ master, main, stable-* ]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: unit-tests-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-10-23 18:53:06 +03:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2023-09-17 15:48:21 +03:00
|
|
|
- name: Set up JDK 17
|
2024-10-24 18:55:10 +03:00
|
|
|
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
|
|
|
java-version: 17
|
|
|
|
- name: Run unit tests with coverage
|
2024-07-16 00:37:13 +03:00
|
|
|
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3.5.0
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
arguments: testGplayDebugUnit
|
|
|
|
- name: Upload test artifacts
|
|
|
|
if: ${{ failure() }}
|
2024-10-09 23:24:40 +03:00
|
|
|
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
name: test-results
|
|
|
|
path: app/build/reports/tests/testGplayDebugUnitTest/
|