diff --git a/.github/workflows/ci-code.yml b/.github/workflows/ci-code.yml index 344d7614..14d11848 100644 --- a/.github/workflows/ci-code.yml +++ b/.github/workflows/ci-code.yml @@ -112,11 +112,12 @@ jobs: ./configure --enable-coverage --enable-otr --enable-pgp --enable-omemo --enable-plugins make -j$(nproc) make check || true + make check-functional-parallel || true lcov --capture --directory . --output-file /coverage/coverage.info --ignore-errors inconsistent lcov --remove /coverage/coverage.info \ - "/usr/include/*" "/usr/lib/*" "*/tests/*" \ + "/usr/include/*" "*/tests/*" \ --output-file /coverage/coverage.info \ - --ignore-errors inconsistent,empty + --ignore-errors inconsistent,empty,unused ' - name: Upload coverage to Codecov uses: codecov/codecov-action@v4