chore: do not check the MSRV

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-09-18 07:56:17 +00:00
parent 8d8ad5f1e5
commit dfa7467b1e
2 changed files with 3 additions and 8 deletions

View File

@@ -20,9 +20,9 @@
in
with pkgs;
{
# n34 development environment
devShells.default = mkShell {
packages = [
cargo-msrv
dbus
git-cliff
just
@@ -39,6 +39,7 @@
];
};
# Build n34
packages.default =
let
manifest = (pkgs.lib.importTOML ./Cargo.toml).package;

View File

@@ -32,7 +32,7 @@ _default:
@{{JUST_EXECUTABLE}} --list-heading "{{header}}" --list
# Run the CI
ci: && msrv _done_ci
ci: && _done_ci
echo "🔨 Building n34..."
cargo build -q
echo "🔍 Checking code formatting..."
@@ -43,12 +43,6 @@ ci: && msrv _done_ci
echo "🧪 Running tests..."
cargo test -q
# Check that the current MSRV is correct
msrv:
echo "🔧 Verifying MSRV..."
cargo-msrv verify
echo "✅ MSRV verification passed"
_done_ci:
echo "🎉 CI pipeline completed successfully"