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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
313 B
Nix
Raw Normal View History

{
self,
inputs,
helpers,
...
}:
{
perSystem =
2025-01-19 12:55:15 +00:00
{ pkgs, ... }:
{
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;
};
}