From 4a132a493cf3acc62d3bb22e7df3b4891e07f5f5 Mon Sep 17 00:00:00 2001 From: Bruno Gabriel dos Santos Date: Thu, 17 Oct 2024 20:37:28 -0300 Subject: [PATCH] fix: add lcov install before running tests --- .github/workflows/coverage.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index ab21ec8..7a9e306 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -17,11 +17,14 @@ jobs: uses: subosito/flutter-action@v1 with: channel: "stable" + + - name: Install lcov + run: sudo apt-get install -y lcov - name: Install dependencies run: flutter pub get working-directory: pokedex - + - name: Run tests run: | flutter test --coverage --reporter github