Skip to content

Commit d40068e

Browse files
committed
Added CI
1 parent 88b1b05 commit d40068e

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/nix.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Nix actions
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
nix-build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: DeterminateSystems/nix-installer-action@main
15+
- uses: DeterminateSystems/magic-nix-cache-action@main
16+
- name: Build Package
17+
run: nix build .\#rucli

flake.nix

-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,5 @@
3636
inherit (pkgs) rucli;
3737
default = packages.rucli;
3838
};
39-
legacyPackages = pkgs;
4039
});
4140
}

0 commit comments

Comments
 (0)