nixlets/ci.nix

23 lines
316 B
Nix

{
pkgs,
inputs',
...
}: {
ci = {
stages = ["check"];
default = {
retry = {
max = 2;
when = "runner_system_failure";
};
};
jobs = {
"check" = {
stage = "check";
script = [
"nix flake check --impure"
];
};
};
};
}