Skip to content

UnitTest by mtkw0127 #754

UnitTest by mtkw0127

UnitTest by mtkw0127 #754

Workflow file for this run

name: UnitTest
on:
push:
branches:
- main
pull_request:
run-name: "UnitTest by ${{ github.actor }}"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
unit-test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: ./.github/actions/setup-java
- name: Upload an event payload for EnricoMi/publish-unit-test-result-action
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: event-payload
path: ${{ github.event_path }}
- name: Run local tests
run: ./gradlew testDebug --stacktrace --rerun-tasks
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: screenshot
path: |
**/build/outputs/roborazzi
retention-days: 30
- id: test-reports
if: always()
uses: ./.github/actions/upload-distributed-files
with:
copy-to: .test-reports
name: reports
name-type: directory
artifact-name: 'test-reports'
- id: test-results
if: always()
uses: ./.github/actions/upload-distributed-files
with:
copy-to: .test-results
name: "*.xml"
name-type: file
grep-by: /test-results/
artifact-name: 'test-results'