Playing with CI #1

Merged
aciceri merged 4 commits from aciceri/forgejo into master 2024-03-09 01:18:08 +01:00
2 changed files with 8 additions and 4 deletions
Showing only changes of commit 893ea2f870 - Show all commits

View file

@ -1,7 +1,8 @@
on: [push]
jobs:
test:
runs-on: nix
runs-on: nix
steps:
- uses: actions/checkout@v3
- run: nix --version
- uses: actions/checkout@v4
- 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 = {
inherit (config.packages) ccrEmacs;
test = pkgs.hello.overrideDerivation (_: {
name = "test";
});
};
};
}