Skip to content

Commit aa00e6d

Browse files
committed
ci: build flake checks via GH workflows
1 parent 4be2b3a commit aa00e6d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/check.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Check Flake"
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches-ignore:
7+
- "update-*"
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: cachix/install-nix-action@master
16+
with:
17+
github_access_token: ${{ secrets.GITHUB_TOKEN }}
18+
19+
- uses: actions/checkout@v4
20+
21+
- run: nix flake Check
22+
name: Test Flake Outputs

0 commit comments

Comments
 (0)