From 06a218c50ccd6e08b5e8e4a12079d78e6349779b Mon Sep 17 00:00:00 2001 From: "Jose F. Martinez Pedraza" Date: Fri, 28 May 2021 12:49:39 -0400 Subject: [PATCH] Fix #1483, Install lcov in workflow --- .github/workflows/code-coverage.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index 9def44cff..eaf0d6965 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -17,6 +17,9 @@ jobs: timeout-minutes: 15 steps: + - name: Install coverage tools + run: sudo apt-get install lcov -y + # Checks out a copy of your repository on the ubuntu-latest machine - name: Checkout bundle uses: actions/checkout@v2