infrastructure/checks/default.nix
Fabian Hauser 7930f9191d
All checks were successful
CI / build (push) Successful in 2m40s
Implement nixos-modules/static-page test
2025-03-24 22:26:50 +02:00

27 lines
527 B
Nix

{
self,
system,
pkgs,
deployPkgs,
...
}:
{
${system} = {
# Check project formatting
format = pkgs.runCommand "nixfmt-check" { } ''
set -euo pipefail
cd ${self}
${self.formatter.${system}}/bin/formatter . --check
mkdir $out
'';
nixos-modules = pkgs.callPackage ./nixos-modules {
inherit (self.lib) getSubDirs isFolderWithFile;
};
#TODO(#29): Integration/System tests
# Import deploy-rs tests
} // (deployPkgs.deploy-rs.lib.deployChecks self.deploy);
}