Merge pull request #295 from Gottox/fix/missing-headers #564
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeCov | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
codecov: | |
name: CodeCov | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install tools | |
run: | | |
sudo apt update | |
sudo apt install --yes \ | |
git \ | |
build-essential \ | |
gcovr \ | |
meson \ | |
pkg-config \ | |
libfuse-dev \ | |
libfuse3-dev \ | |
liblz4-dev \ | |
liblzma-dev \ | |
zlib1g-dev \ | |
libzstd-dev \ | |
squashfs-tools | |
- name: Configure | |
run: | | |
CC=gcc meson setup build \ | |
-Db_coverage=true \ | |
-Dwerror=true \ | |
-Dexamples=true \ | |
-Dzlib=enabled \ | |
-Dlz4=enabled \ | |
-Dlzma=enabled \ | |
-Dzstd=enabled \ | |
-Dthreads=enabled \ | |
-Dfuse-old=enabled \ | |
-Dtest=extended | |
- name: Build | |
run: | | |
meson compile -C build | |
- name: Test | |
run: | | |
MESON_TESTTHREADS=1 meson test --verbose -C build | |
- name: Generate Reports | |
run: | | |
ninja -C build coverage-xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |