ci: install lcov

This commit is contained in:
Sergiu Deitsch 2021-11-19 22:50:11 +01:00
parent f773eb9b6f
commit f47582361a

View File

@ -15,7 +15,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Download artifacts'
- name: Setup Dependencies
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update
sudo apt-get install -y lcov
- name: Download Artifacts
uses: actions/github-script@v3.1.0
with:
script: |
@ -36,10 +43,10 @@ jobs:
fs.writeFileSync('${{github.workspace}}/' + artifact.name + '.zip', Buffer.from(download.data));
}
- name: Unpack artifacts
- name: Unpack Artifacts
run: |
for file in *.zip; do
unzip "$file" -d ${file%.zip}
unzip "$file" -d "${file%.zip}"
done
- name: Generate Coverage