ci: add MSRV job to verify minimum supported Rust version (1.65.0) (#114)

This commit is contained in:
Sylvestre Ledru
2026-03-30 17:33:53 +02:00
committed by GitHub
parent 9ee25855c0
commit 888ffd59ec
3 changed files with 13 additions and 1 deletions
+11
View File
@@ -67,6 +67,17 @@ jobs:
incremental_files_only: false
verbose: true
msrv:
name: MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@1.65.0
- uses: Swatinem/rust-cache@v2
- uses: mozilla-actions/sccache-action@v0.0.9
- run: cargo fetch --locked
- run: cargo test --all-features
test:
name: Build/Test
runs-on: ${{ matrix.os }}
Generated
+1 -1
View File
@@ -1,6 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
version = 3
[[package]]
name = "aho-corasick"
+1
View File
@@ -3,6 +3,7 @@ name = "platform-info"
version = "2.1.0"
authors = ["uutils developers"]
edition = "2018"
rust-version = "1.65.0"
description = "A simple cross-platform interface to get info about a system"
homepage = "https://github.com/uutils/platform-info"