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
|
2023-12-26 02:48:39 +03:00
|
|
|
uses: gradle/gradle-build-action@982da8e78c05368c70dac0351bb82647a9e9a5d2 # v2.11.1
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
arguments: testGplayDebugUnit
|
|
|
|
- name: Upload test artifacts
|
|
|
|
if: ${{ failure() }}
|
2023-12-19 02:31:00 +03:00
|
|
|
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
|
2023-09-17 15:48:21 +03:00
|
|
|
with:
|
|
|
|
name: test-results
|
|
|
|
path: app/build/reports/tests/testGplayDebugUnitTest/
|