Files
infra/tests/default.nix
kurogeek 1a78f721e6 mob next [ci-skip] [ci skip] [skip ci]
lastFile:tests/tests/think-gtcm.nix
2025-11-20 15:15:14 +07:00

18 lines
278 B
Nix

{ ... }:
{
perSystem =
{ pkgs, self', ... }:
{
checks =
let
checkArgs = {
inherit pkgs;
self = self';
};
in
{
think-gtcm = import ./tests/think-gtcm.nix checkArgs;
};
};
}