mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2025-12-12 01:50:05 +01:00
23 lines
316 B
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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|