feature: improved checks and build time

This commit is contained in:
Jermeiah S 2025-06-29 12:47:09 -04:00
parent e800b738dc
commit 021d76dbc4
No known key found for this signature in database
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@ jobs:
runs-on: nix runs-on: nix
steps: steps:
- uses: https://code.forgejo.org/actions/checkout@v3 - uses: https://code.forgejo.org/actions/checkout@v3
- run: nix run github:Mic92/nix-fast-build
- run: nix flake check . - run: nix flake check .
deploy: deploy:

View file

@ -56,4 +56,7 @@ in
# remoteBuild = true; # remoteBuild = true;
nodes = lib.mapAttrs genNode deployableNodes; nodes = lib.mapAttrs genNode deployableNodes;
}; };
flake.checks = builtins.mapAttrs (
system: deployLib: deployLib.deployChecks self.deploy
) deploy-rs.lib;
} }