nix-community.nixvim/flake/dev/tests.nix

18 lines
248 B
Nix

{
self,
helpers,
...
}:
{
perSystem =
{ pkgs, ... }:
let
tests = pkgs.callPackage ../../tests {
inherit helpers self;
};
in
{
checks = tests.flakeCheck;
ci.buildbot = tests.buildbot;
};
}