Skip to content

Commit ad97dbe

Browse files
committed
chore: use normal tests
1 parent 5290c13 commit ad97dbe

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ jobs:
99
uses: actions/checkout@v3
1010
- name: 🎯 Setup Dart
1111
uses: dart-lang/setup-dart@v1
12-
- name: 🤖 Setup Very Good CLI
13-
run: dart pub global activate very_good_cli
1412
- name: 📦 Install Dependencies
1513
run: dart pub get
1614
- name: ✨ Check Formatting
1715
run: dart format --set-exit-if-changed .
1816
- name: 🕵️ Analyze
1917
run: dart analyze --fatal-infos --fatal-warnings lib test
2018
- name: 🧪 Run Tests
21-
run: very_good test --coverage
19+
run: |
20+
dart pub global activate coverage 1.2.0
21+
dart test -j 4 --coverage=coverage
22+
dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.packages --report-on=lib
2223
- name: 📊 Upload Code Coverage
2324
uses: codecov/codecov-action@v2

0 commit comments

Comments
 (0)