nix-community.nixvim/flake/dev/package-tests.nix
Matt Sturgeon d14de7a243 flake/ci: re-enable package tests on buildbot
(cherry picked from commit 6c456efc96)
2025-06-02 11:00:38 +00:00

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;
};
}