infrastructure/checks/default.nix
Fabian Hauser fcb47056d2
Some checks failed
CI / build (push) Failing after 1m42s
Switch formatting to nixfmt-tree
2025-03-20 13:40:57 +02:00

18 lines
271 B
Nix

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