From 868de7df64bbabc4885bed3dd5d8ef368e61c14a Mon Sep 17 00:00:00 2001 From: Zachery Aaron Shores-Chmielewski Date: Mon, 16 Feb 2026 13:19:02 +0700 Subject: [PATCH] feat: proper CI tests --- .ci.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.ci.yml b/.ci.yml index 9a1f00c..d8458e2 100644 --- a/.ci.yml +++ b/.ci.yml @@ -1,8 +1,16 @@ pipelines: - smoke: + ci: triggers: - event: push branches: ["*"] jobs: - hello: - run: echo "CI is alive" + check: + run: cargo check --workspace + timeout: 600 + clippy: + run: cargo clippy --workspace --all-targets -- -D warnings + timeout: 600 + test: + needs: [check] + run: cargo xtask test essential + timeout: 900