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] on: [push]
jobs: jobs:
test: test:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: nix --version - run: nix-fast-build --no-nom

View file

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