fix: simplify CI to build only
Some checks failed
CI / test (push) Failing after 11m26s

This commit is contained in:
2026-02-05 16:26:19 +00:00
parent dbe7f6c702
commit 6097c92ef9

View File

@@ -23,24 +23,5 @@ jobs:
profile: minimal profile: minimal
override: true 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 - name: Build project
run: cargo build --all-features run: cargo build --all-features
- name: Run tests
run: cargo test --all-features