Skip to content

Commit 2d55439

Browse files
committed
ops: add nix.yml
1 parent 26cb747 commit 2d55439

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/nix.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Nix Build and Flake Check
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["*"]
8+
9+
jobs:
10+
nix:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v6
15+
- name: Install nix
16+
uses: cachix/install-nix-action@v31
17+
- name: Check flake
18+
run: nix flake check

0 commit comments

Comments
 (0)