Add justfile

This commit is contained in:
Oliver Davies 2025-07-31 23:47:44 +01:00
parent 739a3972eb
commit 80ab07e86e
2 changed files with 6 additions and 0 deletions

View file

@ -12,6 +12,7 @@
packages = with pkgs; [
go
gopls
just
];
};
};

5
justfile Normal file
View file

@ -0,0 +1,5 @@
@default:
just --list
test:
go test ./... -v