From 8b285d38bb8c3fae64102f7b74882b5214b4d8e9 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 | 45 ++++++++++++++++++++++++++++++++++++++ codecov.yml | 1 + 2 files changed, 46 insertions(+) create mode 100644 .github/workflows/kcov.yml create mode 100644 codecov.yml diff --git a/.github/workflows/kcov.yml b/.github/workflows/kcov.yml new file mode 100644 index 0000000000..2679157378 --- /dev/null +++ b/.github/workflows/kcov.yml @@ -0,0 +1,45 @@ +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: | + wget https://github.com/SimonKagstrom/kcov/releases/download/v42/kcov-amd64.tar.gz + sudo tar xf kcov-amd64.tar.gz -C / + + - name: Run Tests with kcov + run: | + kcov --version + zig build test -Dgenerate_coverage + + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + directory: zig-out/kcov/kcov-merged + fail_ci_if_error: true + verbose: true + diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000000..d49e0ad852 --- /dev/null +++ b/codecov.yml @@ -0,0 +1 @@ +comment: