Skip to content

Commit 065eff3

Browse files
committed
CI: init
1 parent 2d83b10 commit 065eff3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/nix.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
jobs:
5+
nix:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
10+
- uses: DeterminateSystems/nix-installer-action@main
11+
- uses: DeterminateSystems/magic-nix-cache-action@main
12+
13+
# not needed (yet)
14+
# - uses: cachix/cachix-action@v12
15+
# with:
16+
# name: hyprland
17+
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
18+
19+
- name: Build
20+
run: nix build --print-build-logs --keep-going
21+

0 commit comments

Comments
 (0)