fix: use psm 0.1.23 to fix linux arm64 cross compile on CI #248
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: Check Rust code | |
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 | |
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 |