feat: add CI, improve benchmark, fix issue statix created and remove statix

This commit is contained in:
technofab 2025-09-15 13:10:48 +02:00
parent 5fee6ef12a
commit 560aaf0f15
No known key found for this signature in database
9 changed files with 118 additions and 13 deletions

View file

@ -1,18 +1,24 @@
{inputs, ...}: let
inherit (inputs) pkgs devshell treefmt;
{
inputs,
cell,
...
}: let
inherit (inputs) pkgs devshell treefmt soonix;
inherit (cell) ci;
in {
default = devshell.mkShell {
imports = [soonix.devshellModule];
packages = [
pkgs.nil
(treefmt.mkWrapper pkgs {
programs = {
alejandra.enable = true;
statix.enable = true;
deadnix.enable = true;
mdformat.enable = true;
};
})
];
soonix.hooks.ci = ci.soonix;
meta = {
enableMenu = true;
showMenu = "always";