Compare commits

...

1 commit

Author SHA1 Message Date
04085cb058
[CI] Forgejo tests
All checks were successful
/ test (push) Successful in 15s
2024-02-15 15:22:22 +01:00
2 changed files with 7 additions and 4 deletions

View file

@ -1,7 +1,7 @@
on: [push]
jobs:
test:
runs-on: nix
runs-on: nix
steps:
- uses: actions/checkout@v3
- run: nix --version
- uses: actions/checkout@v4
- run: nix-fast-build --no-nom

View file

@ -1,7 +1,10 @@
{
perSystem = {config, ...}: {
perSystem = {config, pkgs, ...}: {
checks = {
inherit (config.packages) ccrEmacs;
test = pkgs.hello.overrideDerivation (_: {
name = "test";
});
};
};
}