Skip to content

Commit 8c3837a

Browse files
committed
.
1 parent 25eee42 commit 8c3837a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/flutter_test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@ jobs:
1313
test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- name: Install Flutter
1818
uses: subosito/flutter-action@v2
1919
with:
20-
flutter-version: '3.29.0'
20+
flutter-version: "3.29.0"
2121
- name: Run Flutter Tests
2222
run: flutter test --coverage
23+
24+
- name: Upload coverage reports
25+
uses: actions/upload-artifact@v4
26+
with:
27+
name: coverage-report
28+
path: coverage/lcov.info

0 commit comments

Comments
 (0)