diff --git a/flake.nix b/flake.nix index 759ae57..c57ca7a 100644 --- a/flake.nix +++ b/flake.nix @@ -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; diff --git a/justfile b/justfile index 24d6ca9..f60a302 100644 --- a/justfile +++ b/justfile @@ -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"