Skip to content

chore: add llvm-cov to CI #6

chore: add llvm-cov to CI

chore: add llvm-cov to CI #6

Workflow file for this run

name: Coverage
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
jobs:
coverage:
runs-on:
- runs-on=${{ github.run_id }}
- runner=64cpu-linux-arm64
- tag=coverage
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust toolchain (nightly)
run: rustup toolchain install nightly --component llvm-tools-preview
- name: Install cargo-llvm-cov
run: cargo install cargo-llvm-cov
- name: Run coverage
run: cargo llvm-cov --json --output-path=coverage
- name: Parse detailed coverage report
id: parse
run: |
# Initialize the markdown table header
echo "| File | Coverage | Total Lines | Covered Lines |" > coverage_table.md
echo "|--------------------|----------|-------------|---------------|" >> coverage_table.md
# Parse each file's data and append it to the table
jq -r '.files[] | "| \(.file) | \(.coverage.lines.percent)% | \(.coverage.lines.total) | \(.coverage.lines.covered) |"' coverage.json >> coverage_table.md
- name: Set markdown table as output
id: table_output
run: echo "table=$(< coverage_table.md)" >> $GITHUB_ENV
- name: Post detailed coverage results as PR comment
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const table = process.env.table;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `### Detailed Coverage Report\n\n${table.replace(/\|/g, '\\|')}`
});