Skip to content

chore(deps): bump the minor-bumps group with 5 updates #81

chore(deps): bump the minor-bumps group with 5 updates

chore(deps): bump the minor-bumps group with 5 updates #81

Workflow file for this run

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