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:
|
2023-10-24 02:18:32 +03:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-09-17 15:48:21 +03:00
|
|
|
- name: Set up JDK 17
|
2024-03-14 20:33:40 +03:00
|
|
|
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
|
|
|
java-version: 17
|
|
|
|
- name: Run unit tests with coverage
|
2024-04-09 02:30:33 +03:00
|
|
|
uses: gradle/gradle-build-action@bdf99f9dada2506e990bac6de8ec5e3de34a04f1 # v3.2.1
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
arguments: testGplayDebugUnit
|
|
|
|
- name: Upload test artifacts
|
|
|
|
if: ${{ failure() }}
|
2024-02-06 01:02:37 +03:00
|
|
|
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
name: test-results
|
|
|
|
path: app/build/reports/tests/testGplayDebugUnitTest/
|