mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 10:10:06 +01:00
10 lines
214 B
Nix
10 lines
214 B
Nix
{inputs, ...}: let
|
|
inherit (inputs) pkgs ntlib cilib;
|
|
in {
|
|
tests = ntlib.mkNixtest {
|
|
modules = ntlib.autodiscover {dir = "${inputs.self}/tests";};
|
|
args = {
|
|
inherit pkgs ntlib cilib;
|
|
};
|
|
};
|
|
}
|