-
Notifications
You must be signed in to change notification settings - Fork 206
69 lines (56 loc) · 1.68 KB
/
UnitTest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: UnitTest
on:
push:
branches:
- main
pull_request:
run-name: "UnitTest by ${{ github.actor }}"
permissions: { }
jobs:
unit-test:
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
contents: read # for clone
actions: write # for upload-artifact
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: ./.github/actions/setup-java
- uses: dawidd6/action-download-artifact@v2
continue-on-error: true
with:
name: screenshot
workflow: UnitTest.yml
branch: main
- 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 testDevDebugUnitTest testDebugUnitTest --stacktrace
- 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'