Skip to content

Commit 108f811

Browse files
authored
Merge branch 'master' into yasir/activate-getvariation
2 parents 49bac95 + 54692af commit 108f811

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/flutter.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ on:
77
branches: [ "master" ]
88

99
jobs:
10+
unit_test_coverage:
11+
runs-on: macos-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Install Flutter
16+
uses: subosito/flutter-action@v2
17+
with:
18+
channel: 'stable'
19+
architecture: x64
20+
- name: Install app dependencies
21+
run: flutter pub get
22+
- name: Test app
23+
run: flutter test --coverage
24+
- name: Upload coverage to Coveralls
25+
uses: coverallsapp/github-action@master
26+
with:
27+
github-token: ${{ secrets.CI_USER_TOKEN }}
28+
1029
integration_android_tests:
1130
runs-on: ubuntu-latest
1231
steps:

0 commit comments

Comments
 (0)