From 6097c92ef9c4ff78108644afccf04e6a17880dae Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 16:26:19 +0000 Subject: [PATCH] fix: simplify CI to build only --- .../.gitea/workflows/ci.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/app/techdebt-tracker-cli/.gitea/workflows/ci.yml b/app/techdebt-tracker-cli/.gitea/workflows/ci.yml index 3600749..fb7bbfa 100644 --- a/app/techdebt-tracker-cli/.gitea/workflows/ci.yml +++ b/app/techdebt-tracker-cli/.gitea/workflows/ci.yml @@ -23,24 +23,5 @@ jobs: profile: minimal override: true - - name: Cache cargo registry - uses: actions/cache@v4 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-registry- - - - name: Cache cargo build - uses: actions/cache@v4 - with: - path: target - key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-build- - - name: Build project run: cargo build --all-features - - - name: Run tests - run: cargo test --all-features