mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
12 lines
304 B
Nix
12 lines
304 B
Nix
{
|
|
perSystem =
|
|
{ config, ... }:
|
|
{
|
|
# Test that all packages build fine when running `nix flake check`.
|
|
checks = config.packages;
|
|
|
|
# Test that all packages build when running buildbot
|
|
# TODO: only test the docs on x86_64-linux
|
|
ci.buildbot = config.packages;
|
|
};
|
|
}
|