-
-
Notifications
You must be signed in to change notification settings - Fork 0
190 lines (153 loc) · 4.82 KB
/
test.yaml
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
name: Dart Tests
on:
push:
branches:
- main
pull_request:
env:
api_level: 35
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y sqlite3 libsqlite3-dev
- name: Setup Flutter (use cache)
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Prepare env file
run: cp .env.sample .env
- name: Run tests
run: |
dart run full_coverage
flutter test --coverage
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: unit-test-coverage
path: coverage/lcov.info
# integration-test:
# runs-on: ubuntu-latest
# timeout-minutes: 20
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Setup Flutter (use cache)
# uses: subosito/flutter-action@v2
# with:
# channel: stable
# cache: true
# - name: Cache Flutter dependencies
# uses: actions/cache@v4
# with:
# path: ~/.pub-cache
# key: pub-cache-${{ runner.os }}-${{ hashFiles('pubspec.yaml', 'pubspec.lock') }}
# restore-keys: |
# pub-cache-${{ runner.os }}-
# - name: Cache Flutter build outputs
# uses: actions/cache@v4
# with:
# path: build/
# key: flutter-build-${{ runner.os }}-${{ hashFiles('pubspec.yaml', 'pubspec.lock') }}
# restore-keys: |
# flutter-build-${{ runner.os }}-
# - name: Install dependencies
# run: flutter pub get
# - name: Prepare env file
# run: cp .env.sample .env
# - name: Install Android dependencies
# run: |
# sudo apt-get update
# sudo apt-get install -y lib32stdc++6 lib32z1
# - name: Setup Java 17
# uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: 17
# - name: Enable KVM
# run: |
# echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
# sudo udevadm control --reload-rules
# sudo udevadm trigger --name-match=kvm
# - name: Setup Android SDK & Run integration tests
# uses: reactivecircus/android-emulator-runner@v2
# with:
# api-level: ${{ env.api_level }}
# target: google_apis
# arch: x86_64
# profile: pixel_6_pro
# script: flutter test integration_test --coverage --coverage-path coverage/lcov-it.info
# - name: Upload coverage artifact
# uses: actions/upload-artifact@v4
# with:
# name: integration-test-coverage
# path: coverage/lcov-it.info
codecov:
# needs: [test, integration-test]
needs: [test]
runs-on: ubuntu-latest
if: always()
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download unit test coverage artifact
uses: actions/download-artifact@v4
with:
name: unit-test-coverage
path: coverage
# - name: Download integration test coverage artifact
# uses: actions/download-artifact@v4
# with:
# name: integration-test-coverage
# path: coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
# files: coverage/lcov.info,coverage/lcov-it.info
files: coverage/lcov.info
sonar:
# needs: [test, integration-test]
needs: [test]
runs-on: ubuntu-latest
if: always()
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y sqlite3 libsqlite3-dev
- name: Setup Flutter (use cache)
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Prepare env file
run: cp .env.sample .env
- name: Download unit test coverage artifact
uses: actions/download-artifact@v4
with:
name: unit-test-coverage
path: coverage
# - name: Download integration test coverage artifact
# uses: actions/download-artifact@v4
# with:
# name: integration-test-coverage
# path: coverage
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}