forked from agrahn/Android-Password-Store
-
Notifications
You must be signed in to change notification settings - Fork 2
140 lines (121 loc) · 4.15 KB
/
Copy pathpull_request.yml
File metadata and controls
140 lines (121 loc) · 4.15 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
on:
push:
branches:
- main
pull_request:
merge_group:
name: Check pull request
concurrency:
group: ${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
check-codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup build environment
uses: ./.github/reusable-workflows/setup-gradle
with:
java-version: 21
- name: Check codestyle
shell: bash
run: ./gradlew spotlessCheck
- name: Upload Kotlin build report
if: "${{ always() }}"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Build report (check-codestyle)
path: build/reports/kotlin-build/
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup build environment
uses: ./.github/reusable-workflows/setup-gradle
with:
java-version: 21
- name: Run unit tests
shell: bash
run: ./gradlew test -PslimTests
- name: (Fail-only) Upload test report
if: "${{ failure() }}"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Test report (unit-tests)
path: |
app/build/reports
passkeys/core/build/reports
crypto/pgpainless/build/reports
crypto/common/build/reports
- name: Upload Kotlin build report
if: "${{ always() }}"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Build report (unit-tests)
path: build/reports/kotlin-build/
passkey-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup build environment
uses: ./.github/reusable-workflows/setup-gradle
with:
java-version: 21
- name: Run passkey compatibility tests
shell: bash
run: >-
./gradlew
:passkeys:core:test
:passkeys:provider:testDebugUnitTest
:crypto:pgpainless:test
:app:testDebugUnitTest
- name: (Fail-only) Upload passkey test reports
if: "${{ failure() }}"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Test report (passkey-tests)
path: |
app/build/reports/tests
crypto/pgpainless/build/reports/tests
passkeys/core/build/reports/tests
passkeys/provider/build/reports/tests
- name: Upload Kotlin build report
if: "${{ always() }}"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Build report (passkey-tests)
path: build/reports/kotlin-build/
build-apks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup build environment
uses: ./.github/reusable-workflows/setup-gradle
with:
java-version: 21
- name: Build debug APKs
shell: bash
run: ./gradlew assembleDebug
- name: Upload Kotlin build report
if: "${{ always() }}"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Build report (build-apks)
path: build/reports/kotlin-build/
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup build environment
uses: ./.github/reusable-workflows/setup-gradle
with:
java-version: 21
- name: Run Lint
shell: bash
run: ./gradlew lint
- name: Upload Kotlin build report
if: "${{ always() }}"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Build report (lint)
path: build/reports/kotlin-build/