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: