Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
run: |
sudo apt-get update -y
sudo apt install -y lcov
mkdir -p build

- name: Dart Pub Get
timeout-minutes: 3
Expand All @@ -54,9 +53,11 @@ jobs:
--concurrency=$(grep -c processor /proc/cpuinfo)

- name: Dart Compile
run: dart compile exe bin/check.dart -o build/check
run: |
mkdir -p build
dart compile exe bin/check.dart -o build/check

- name: Creating package filter.
- name: Creating package filter
run: dart run helpers/package.dart

- name: Creating lcov.info
Expand All @@ -67,6 +68,9 @@ jobs:
-i coverage \
-o coverage/lcov.info

- name: Debug coverage
run: ls -lahR coverage/

- name: Creating Test Coverage HTML
run: |
genhtml coverage/lcov.info \
Expand Down