build(deps): bump serde from 1.0.214 to 1.0.215 #318
Workflow file for this run
This file contains 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: 🧪 Test | |
on: [pull_request, push] | |
jobs: | |
test-lib: | |
name: Test library | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
toolchain: [stable, nightly] | |
continue-on-error: true | |
steps: | |
# Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Setup Rust | |
- name: Setup Rust | |
run: | | |
rustup toolchain add ${{ matrix.toolchain }} --component llvm-tools-preview | |
rustup override set ${{ matrix.toolchain }} | |
# Configure cache | |
- name: Configure cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: test-${{ runner.os }}-cargo-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }} | |
# Run tests with all features | |
- name: Run tests with all features | |
id: run-tests-all-features | |
run: cargo test --verbose --workspace --all-features |