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
|
2023-12-05 02:11:39 +03:00
|
|
|
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
|
|
|
java-version: 17
|
|
|
|
- name: Run unit tests with coverage
|
2024-01-31 16:29:14 +03:00
|
|
|
uses: gradle/gradle-build-action@3b1b3b9a2104c2b47fbae53f3938079c00c9bb87 # v3.0.0
|
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/
|