infrastructure/checks/default.nix
Fabian Hauser d01da714fa
Some checks failed
CI / build (push) Failing after 1m37s
Switch formatting to nixfmt-tree
2025-03-20 14:03:33 +02:00

18 lines
281 B
Nix

{
self,
system,
pkgs,
deployPkgs,
...
}@inputs:
{
${system} = {
# Check project formatting
format = self.formatter.${system};
#TODO(#29): Integration/System tests
# Import deploy-rs tests
} // (deployPkgs.deploy-rs.lib.deployChecks self.deploy);
}