1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
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;
};
}