Files
nixvim/flake/dev/tests.nix
Matt Sturgeon 97f048f640 ci: buildbot-nix → nixbot
Migrate flake outputs, config files, etc from buildbot-nix to nixbot.

This is not urgent, because nixbot falls back to buildbot-nix.toml when
nixbot.toml is missing.
2026-07-02 13:52:50 +00:00

15 lines
221 B
Nix

{ self, ... }:
{
perSystem =
{ pkgs, ... }:
let
tests = pkgs.callPackage ../../tests {
inherit self;
};
in
{
checks = tests.flakeCheck;
ci.nixbot = tests.nixbot;
};
}