This repository was archived by the owner on Jul 24, 2026. It is now read-only.
chore(deps): bump serde_json from 1.0.145 to 1.0.146 #16
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # Use the pinned MSRV toolchain for build/test/clippy. | |
| - name: Install Rust 1.92.0 + clippy | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: 1.92.0 | |
| components: clippy | |
| # Use nightly rustfmt because `rustfmt.toml` uses nightly-only options. | |
| - name: Install nightly + rustfmt | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| - name: Rust cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Format | |
| run: cargo +nightly fmt --all -- --check | |
| # Keep clippy non-blocking on warnings for now; tighten during the engine refactor. | |
| - name: Clippy | |
| run: cargo +1.92.0 clippy --workspace --all-targets | |
| - name: Clippy (no unwrap/expect) | |
| run: cargo +1.92.0 clippy --workspace --all-targets -- -D clippy::unwrap_used -D clippy::expect_used | |
| - name: Test | |
| run: cargo +1.92.0 test --workspace --all-targets |