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

18 lines
284 B
Nix

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