From a36ad8f64c77a90ae1fa5733dfc81d83fdcc5868 Mon Sep 17 00:00:00 2001 From: SuperAuguste <19855629+SuperAuguste@users.noreply.github.com> Date: Fri, 21 Jul 2023 19:45:06 +0200 Subject: [PATCH] coverage: add coverage CI action --- .github/workflows/kcov.yml | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/kcov.yml diff --git a/.github/workflows/kcov.yml b/.github/workflows/kcov.yml new file mode 100644 index 0000000000..2f51bd166d --- /dev/null +++ b/.github/workflows/kcov.yml @@ -0,0 +1,47 @@ +name: Code Coverage + +on: + pull_request: + types: [opened, synchronize] + +permissions: + pull-requests: write + +jobs: + coverage: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: true + + - uses: goto-bus-stop/setup-zig@v2 + with: + version: master + + - run: zig version + - run: zig env + + - name: Build + run: zig build + + - name: Install kcov + run: | + sudo apt-get update + sudo apt-get install kcov + + - name: Run Tests with kcov + run: | + mkdir -p zig-out/kcov + zig build test -Dgenerate_coverage + + - uses: actions/checkout@master + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + directory: zig-out/kcov/kcov-merged + files: coverage.json + fail_ci_if_error: true + verbose: true +