chore(deps): bump the minor-bumps group with 5 updates #81
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: Continuous integration | |
| on: | |
| pull_request: | |
| push: | |
| branches: main | |
| env: | |
| CARGO_TERM_COLOR: always | |
| # Disable incremental compilation for faster from-scratch builds | |
| CARGO_INCREMENTAL: 0 | |
| # Remove debug info, which increases the size of target directory | |
| CARGO_PROFILE_TEST_DEBUG: 0 | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout directory | |
| uses: actions/checkout@v5 | |
| - name: Setup Rust | |
| run: | | |
| rustup toolchain install 1.88 --profile minimal --no-self-update | |
| rustup default 1.88 | |
| - name: Cache dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Cargo check | |
| run: cargo check --locked | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout directory | |
| uses: actions/checkout@v5 | |
| - name: Setup Rust | |
| run: | | |
| rustup toolchain install 1.88 --profile minimal --no-self-update | |
| rustup default 1.88 | |
| - name: Cache dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run tests | |
| run: cargo test --locked |