infrastructure/checks/default.nix
Fabian Hauser 778cb00a1f
All checks were successful
CI / build (push) Successful in 2m26s
Switch formatting to nixfmt-tree
2025-03-20 14:58:24 +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);
}