This commit is contained in:
parent
af9adc909c
commit
99b3c67d31
2 changed files with 7 additions and 4 deletions
|
@ -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 run github:Mic92/nix-fast-build -- --no-nom
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
perSystem = {config, ...}: {
|
||||
perSystem = {config, pkgs, ...}: {
|
||||
checks = {
|
||||
inherit (config.packages) ccrEmacs;
|
||||
test = pkgs.hello.overrideDerivation (_: {
|
||||
name = "test";
|
||||
});
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue