build: support vendoring crates and add vendoring tools #99
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@v3 | |
- uses: baptiste0928/cargo-install@v2 | |
with: | |
crate: cargo-msrv | |
- name: Verify minimum rust version | |
run: cargo-msrv --path src/rust/ verify |