Skip to content

Commit 339cdd7

Browse files
committed
ci: Add workflow that runs nix build
1 parent 4c6e0e4 commit 339cdd7

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build-flake.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build Nix Flake
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
build-flake:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- uses: cachix/install-nix-action@v25
18+
19+
- run: nix build

0 commit comments

Comments
 (0)