Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,29 @@ jobs:
- name: Run tests (if available)
run: |
TSAN_OPTIONS=report_signal_unsafe=0 build/test/test_all

coverage:
name: Coverage
runs-on: ubuntu-latest
container:
image: docker.io/psedoc/anyhttp:0.22

steps:
- *checkout

- name: Configure CMake with Coverage
run: |
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE=ON

- *build

- name: Generate Coverage Report
run: |
cmake --build build --target coverage

- name: Upload Coverage Report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: build/coverage_report/
retention-days: 30
Loading