build(deps): Bump serde from 1.0.210 to 1.0.214 #134
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: CI | |
on: | |
push: | |
branches: [main] | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
branches: [main] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
msrv: | |
name: MSRV Verify | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust (MSRV) | |
uses: actions-rust-lang/[email protected] | |
with: | |
toolchain: "1.56" | |
- name: Install cargo-hack | |
uses: taiki-e/[email protected] | |
with: | |
tool: cargo-hack | |
- name: Generate MSRV lockfile | |
run: cargo hack --remove-dev-deps generate-lockfile | |
- name: Check | |
run: cargo check --workspace --all-features | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust (stable) | |
uses: actions-rust-lang/[email protected] | |
- name: Test | |
run: cargo test --workspace --all-features |