From dff2fb25aa8d7467d8a0fc333aa2b4281cddf605 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Mon, 27 Apr 2026 19:27:26 +0200 Subject: [PATCH] docs: add in CONTRIBUTING.md info about CI --- CONTRIBUTING.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 28a9279..9bf32de 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -85,3 +85,12 @@ Before submitting a pull request, ensure that: * `make`, or * `nix-build` (on NixOS) * There are **no warnings or errors** + +--- + +## Continuous integration + +All PR will need to pass these checks: +1. `clang-format`. Running `find src -name "*.c" -o -name "*.h" | xargs clang-format -i` will automatically apply those rules. +2. The program must build without warning or error. +3. The program must run for five seconds without crashing.