chore(deps): bump serde from 1.0.228 to 1.0.229 #57
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 | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| windows-checks: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy, rustfmt | |
| - name: Cache cargo | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Cargo check | |
| run: cargo check --locked | |
| - name: Format check | |
| run: cargo fmt -- --check | |
| - name: Clippy (all targets) | |
| run: cargo clippy --all-targets --locked -- -D warnings -W clippy::pedantic | |
| - name: Run tests | |
| run: cargo test --all-targets --locked | |
| - name: Build release | |
| run: cargo build --release --locked | |
| docs-and-audit: | |
| # Windows-only: the codebase uses `windows` crate APIs unconditionally; | |
| # cargo doc and cargo audit both need to compile on the same platform. | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Cache cargo | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Build docs | |
| run: cargo doc --no-deps --locked | |
| - name: Install cargo-audit | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: cargo-audit | |
| - name: Audit dependencies | |
| run: cargo audit |