This repository was archived by the owner on Sep 6, 2025. It is now read-only.
Bump serde_json from 1.0.141 to 1.0.142 #159
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: Rust | |
| on: | |
| pull_request: | |
| push: | |
| env: | |
| RUST_BACKTRACE: 1 | |
| CARGO_TERM_COLOR: always | |
| RUSTDOCFLAGS: --deny warnings | |
| RUSTFLAGS: --deny warnings | |
| jobs: | |
| stable: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Clippy | |
| run: cargo clippy --verbose | |
| - name: Run tests | |
| run: cargo test --verbose | |
| msrv: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| components: clippy | |
| toolchain: 1.62.0 | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Clippy | |
| run: cargo clippy --verbose | |
| - name: Run tests | |
| run: cargo test --verbose |