From 3c8091d8e4f83a67ac9afefca7a41b7a3ab13baf Mon Sep 17 00:00:00 2001 From: MoCipher Date: Fri, 20 Feb 2026 09:33:49 +0100 Subject: [PATCH] ci: temporarily build/test only to isolate failures --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c11759d..f0c53d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,10 +108,10 @@ jobs: name: cryptec-ci-diagnostics path: ci-diagnostics/** - - name: Build - run: cargo build --workspace --verbose - - name: Run Rust tests - run: cargo test --workspace --verbose + - name: Build (core only) + run: cargo build -p cryptec_core --verbose + - name: Run Rust tests (core only) + run: cargo test -p cryptec_core --verbose - name: Setup Node.js uses: actions/setup-node@v4