Skip to content

Commit

Permalink
ci: add github action for running coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
danctorres committed Nov 29, 2024
1 parent efc6835 commit c8e1da8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/llvm_cov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Run llvm-cov
on: # yamllint disable-line rule:truthy
pull_request:
branches: ['*']

jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Run Coverage Script
run: bazel run //tools/coverage:llvm_cov -- -t //examples/cpp:test

0 comments on commit c8e1da8

Please sign in to comment.