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

21 lines
313 B
Nix
Raw Normal View History

{
self,
inputs,
helpers,
...
}:
2024-05-05 19:39:35 +02:00
{
perSystem =
2025-01-19 12:55:15 +00:00
{ pkgs, ... }:
2024-05-05 19:39:35 +02:00
{
checks = pkgs.callPackages ../../tests {
2025-01-19 12:55:15 +00:00
inherit helpers self;
};
};
# Output a build matrix for CI
flake.githubActions = inputs.nix-github-actions.lib.mkGithubMatrix {
inherit (self) checks;
};
}