This repository was archived by the owner on Feb 23, 2026. It is now read-only.
chore(deps): bump the sidecar-minor group across 1 directory with 3 updates #869
Workflow file for this run
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: Bolt Sidecar CI | |
| on: | |
| push: | |
| branches: | |
| - unstable | |
| - main | |
| paths: | |
| - "bolt-sidecar/**" | |
| pull_request: | |
| paths: | |
| - "bolt-sidecar/**" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| cargo-tests: | |
| runs-on: self-hosted | |
| timeout-minutes: 20 | |
| env: | |
| RUST_BACKTRACE: 1 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Cache cargo registry | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Check | |
| run: | | |
| cd bolt-sidecar | |
| cargo build | |
| - name: Lint Code with Clippy | |
| run: | | |
| cd bolt-sidecar | |
| cargo clippy --all-targets --all-features -- -D warnings | |
| - name: Install cargo-nextest | |
| uses: baptiste0928/cargo-install@v3 | |
| with: | |
| crate: cargo-nextest | |
| - name: Run bolt-sidecar tests | |
| run: | | |
| cd bolt-sidecar | |
| cargo nextest run --workspace --all-features --retries 3 | |
| env: | |
| RPC_URL: ${{ secrets.RPC_URL }} |