Skip to content

fix(storage): satisfy current clippy lint #81

fix(storage): satisfy current clippy lint

fix(storage): satisfy current clippy lint #81

Workflow file for this run

name: CI (Feature Branch)
on:
push:
branches: ['feature/**']
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
fast-check:
name: Build & Test
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: crosslink
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
crosslink/target/
key: ${{ runner.os }}-cargo-feature-${{ hashFiles('crosslink/Cargo.lock') }}
- name: Build
run: cargo build --locked --verbose
- name: Verify generated Codex plugin assets
run: python3 scripts/sync-codex-plugin.py --check
- name: Run unit tests
run: cargo test --bin crosslink --verbose -- --skip proptest
- name: Run integration tests
run: cargo test --test cli_integration --verbose
- name: Run provider hook fixture tests
run: cargo test --test provider_hooks --verbose