Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
apt-get update
apt-get install -y --no-install-recommends \
kcov valgrind \
git ca-certificates curl xz-utils
git ca-certificates curl xz-utils \
gnupg

- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -72,6 +73,13 @@ jobs:
- name: Coverage
run: zig build test-coverage -Duse-llvm=true -Dcoverage-threshold=85

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: zig-out/coverage/merged/cobertura.xml
fail_ci_if_error: false

- name: Valgrind leak checks
run: zig build test-valgrind -Duse-llvm=true

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# yaml

[![CI](https://github.com/ncode/yaml/actions/workflows/ci.yml/badge.svg)](https://github.com/ncode/yaml/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/ncode/yaml/graph/badge.svg?token=97Q2MPTNBJ)](https://codecov.io/gh/ncode/yaml)

Native Zig YAML 1.2.2 library.

Expand Down
Loading