-
Notifications
You must be signed in to change notification settings - Fork 24
79 lines (66 loc) · 1.79 KB
/
flow.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
70
71
72
73
74
75
76
77
78
79
name: CI
on:
pull_request:
branches:
- main
- development
push:
branches:
- main
- development
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
JVM_OPTS: -Xmx3200m
jobs:
check:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Set up Android SDK
uses: android-actions/setup-android@v3
- name: Static analysis
run: ./gradlew app:staticAnalysis app:collectSarifReports --continue --no-daemon
- name: Upload Report
uses: github/codeql-action/upload-sarif@v3
if: ${{ always() }}
with:
sarif_file: app/build/reports/sarif/
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Set up Android SDK
uses: android-actions/setup-android@v3
- name: Run Tests
run: ./gradlew koverXmlReport --continue --no-daemon
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: ./app/build/reports/kover/project-xml/report.xml
token: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v4
with:
name: test-results
path: app/build/test-results