nixlets/ci.nix

24 lines
316 B
Nix
Raw Normal View History

2024-03-09 15:32:47 +01:00
{
pkgs,
inputs',
...
}: {
ci = {
stages = ["check"];
default = {
retry = {
max = 2;
when = "runner_system_failure";
};
};
jobs = {
"check" = {
stage = "check";
script = [
"nix flake check --impure"
];
};
};
};
}