From 5660698c90d688f22779acda98a457dde28bafdb Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 09:49:52 +0000 Subject: [PATCH] fix: Add cargo check and test to CI --- .gitea/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5e42627..e03ee61 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,4 +17,7 @@ jobs: run: | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y . "$HOME/.cargo/env" - cargo --version + - name: Check compilation + run: cargo check --all-targets + - name: Run tests + run: cargo test --all