-
Notifications
You must be signed in to change notification settings - Fork 1
105 lines (93 loc) · 3.22 KB
/
Copy pathaction.yml
File metadata and controls
105 lines (93 loc) · 3.22 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
# This is a basic workflow that is manually triggered
name: Manual workflow
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Run Lint Check
run: ./gradlew lint
- name: Upload Lint report - App Module
uses: actions/upload-artifact@v2
with:
name: main_app_lint_report.html
path: app/build/reports/lint-results-debug.html
- name: Upload Lint report - Authentication Module
uses: actions/upload-artifact@v2
with:
name: authentication_lint_report.html
path: authentication/build/reports/lint-results-debug.html
- name: Upload Lint report - Transaction Module
uses: actions/upload-artifact@v2
with:
name: transaction_lint_report.html
path: feature_transaction/build/reports/lint-results-debug.html
- name: Upload Lint report - Space Module
uses: actions/upload-artifact@v2
with:
name: space_lint_report.html
path: feature_space/build/reports/lint-results-debug.html
- name: Upload Lint report - Design Module
uses: actions/upload-artifact@v2
with:
name: design_lint_report.html
path: design/build/reports/lint-results-debug.html
- name: Upload Lint report - Contact Picker Module
uses: actions/upload-artifact@v2
with:
name: contact_picker_lint_report.html
path: contact_picker/build/reports/lint-results-debug.html
- name: Upload Lint report - Profile Module
uses: actions/upload-artifact@v2
with:
name: profile_lint_report.html
path: feature_profile/build/reports/lint-results-debug.html
- name: Upload Lint report - Common Module
uses: actions/upload-artifact@v2
with:
name: common_lint_report.html
path: common/build/reports/lint-results-debug.html
- name: Upload Lint report - Home Module
uses: actions/upload-artifact@v2
with:
name: home_lint_report.html
path: feature_home/build/reports/lint-results-debug.html
static-code-analysis:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: SonarCloud Scan
run: ./gradlew app:sonarqube -Dsonar.login=${{ secrets.SONAR_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package:
name: Generate APK
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build debug APK
run: ./gradlew assembleDebug --stacktrace
- name: Upload APK
uses: actions/upload-artifact@v2
with:
name: split-your-bills-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk