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-04-25 16:20:14 +03:00
|
|
|
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
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-26 11:03:44 +03:00
|
|
|
uses: gradle/gradle-build-action@4c39dd82cd5e1ec7c6fa0173bb41b4b6bb3b86ff # v3.3.2
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
arguments: testGplayDebugUnit
|
|
|
|
- name: Upload test artifacts
|
|
|
|
if: ${{ failure() }}
|
2024-04-22 23:11:57 +03:00
|
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
name: test-results
|
|
|
|
path: app/build/reports/tests/testGplayDebugUnitTest/
|