-
Notifications
You must be signed in to change notification settings - Fork 1
139 lines (111 loc) · 3.49 KB
/
ci.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
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
name: CI
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
flutter-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.29.0'
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: dart analyze --fatal-infos
- name: Import sort
run: dart run import_sorter:main --exit-if-changed
- name: Format code
run: dart format --set-exit-if-changed
- name: Run tests
run: flutter test --coverage
- name: Upload coverage report as artifact
uses: actions/upload-artifact@v4
with:
name: flutter-coverage
path: coverage/lcov.info
ios-tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.29.0'
channel: 'stable'
- name: Install dependencies
run: |
brew install xcresultparser
flutter pub get
cd example/ios
pod install
cd ../..
- name: Run tests
run: |
xcodebuild test -workspace ./example/ios/Runner.xcworkspace \
-scheme EventideTests \
-destination 'platform=iOS Simulator,name=iPhone 16,OS=18.1' \
-resultBundlePath build/reports/EventideTests.xcresult
- name: Prepare coverage xml file
run: |
xcresultparser \
--output-format cobertura \
build/reports/EventideTests.xcresult > build/reports/ios-coverage.xml
- name: Upload coverage report as artifact
uses: actions/upload-artifact@v4
with:
name: ios-coverage
path: build/reports/ios-coverage.xml
android-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
cache: 'gradle'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.29.0'
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Build and test
run: |
./example/android/gradlew testDebugUnitTest -p ./example/android/
- name: Upload coverage report as artifact
uses: actions/upload-artifact@v4
with:
name: android-coverage
path: android/build/reports/jacocoTestReport.xml
upload-coverage:
runs-on: ubuntu-latest
needs: [flutter-tests, ios-tests, android-tests]
steps:
- name: Download flutter coverage report
uses: actions/download-artifact@v4
with:
name: flutter-coverage
path: coverage
- name: Download ios coverage report
uses: actions/download-artifact@v4
with:
name: ios-coverage
path: build/reports
- name: Download android coverage report
uses: actions/download-artifact@v4
with:
name: android-coverage
path: android/build/reports/
- name: Upload combined coverage report to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: coverage/lcov.info,build/reports/ios-coverage.xml,android/build/reports/jacocoTestReport.xml