Compare commits

...

1 commit

Author SHA1 Message Date
893ea2f870
[CI] Forgejo tests
All checks were successful
/ test (push) Successful in 23s
2024-02-15 15:31:42 +01:00
2 changed files with 8 additions and 4 deletions

View file

@ -1,7 +1,8 @@
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: cat /nix/store/cscv53kqarckmbz6729ngmyxg3y53n9c-push-to-cache.sh
- 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";
});
}; };
}; };
} }