fix(storage): satisfy current clippy lint #81
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |