File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : nix build .
2
+
3
+ on :
4
+ push :
5
+ branches : [ "master" ]
6
+ pull_request :
7
+ branches : [ "master" ]
8
+
9
+ workflow_dispatch :
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - name : Checkout repository
17
+ uses : actions/checkout@v4
18
+
19
+ - name : Install Nix
20
+ uses : cachix/install-nix-action@v27
21
+ with :
22
+ extra_nix_config : |
23
+ access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
24
+ experimental-features = nix-command flakes
25
+
26
+ - name : nix eval .#nixosConfigurations.nixos-desktop
27
+ run : nix eval .#nixosConfigurations.nixos-desktop
28
+
29
+ - name : nix eval .#nixosConfigurations.nixos-laptop
30
+ run : nix eval .#nixosConfigurations.nixos-laptop
31
+
32
+ - name : nix eval .#nixosConfigurations.nixos-steamdeck
33
+ run : nix eval .#nixosConfigurations.nixos-steamdeck
You can’t perform that action at this time.
0 commit comments