Skip to content

Commit fe23545

Browse files
committed
create report directory
1 parent e39ce81 commit fe23545

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/static.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,14 @@ jobs:
5151
- name: Excluded generated files
5252
run: lcov --remove ./coverage/coverage.lcov '*/lib/src/*.g.dart' '*/lib/src/models/drift/*' -o ./coverage/coverage.lcov
5353

54+
- name: Generate HTML coverage report
55+
run: genhtml -o ./coverage/report ./coverage/coverage.lcov
56+
5457
- name: Upload artifact
5558
uses: actions/upload-pages-artifact@v3
5659
with:
5760
# Upload entire repository
58-
path: 'coverage/report'
61+
path: './coverage/report'
5962
- name: Deploy to GitHub Pages
6063
id: deployment
6164
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
.pub-cache/
3131
.pub/
3232
**/build/
33-
33+
**/coverage/
3434
# Downloaded files
3535
/mac-vendors-export.csv

0 commit comments

Comments
 (0)