-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MSRV Check #6
Comments
Good point! This is the CI file to crib, right? |
In short, just set name: Check MSRV
on:
push:
branches:
- main
paths:
- src/**/*.rs
- Cargo.toml
pull_request:
branches:
- main
paths:
- src/**/*.rs
- Cargo.toml
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@v2
with:
crate: cargo-msrv
- name: Verify minimum rust version
run: cargo-msrv verify |
Since Rust on CRAN is always outdated, it is very useful to have MSRV confirmed on CI.
Like this: apache/arrow-rs#4490
The text was updated successfully, but these errors were encountered: