chore: bump serde_json from 1.0.129 to 1.0.132 in /src/rust (#1265) #1688
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: Check MSRV | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- src/rust/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- src/rust/** | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
test-min-rust-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: cargo-msrv | |
- name: Verify minimum rust version | |
run: cargo-msrv --path src/rust/ verify |