From c8e1da8bdee1714bb341aa475afd6508b8802e4f Mon Sep 17 00:00:00 2001 From: dtor Date: Fri, 29 Nov 2024 12:30:14 +0000 Subject: [PATCH] ci: add github action for running coverage --- .github/workflows/llvm_cov.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/llvm_cov.yml diff --git a/.github/workflows/llvm_cov.yml b/.github/workflows/llvm_cov.yml new file mode 100644 index 0000000..28c008c --- /dev/null +++ b/.github/workflows/llvm_cov.yml @@ -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