Skip to content

Commit 3ae5c07

Browse files
committed
run checks in github action
1 parent bab6f54 commit 3ae5c07

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/checks.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: checks
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
branches: ["main"]
8+
9+
jobs:
10+
run-checks:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v5
15+
- name: Install Nix
16+
uses: DeterminateSystems/determinate-nix-action@v3
17+
- name: Run the Magic Nix Cache
18+
uses: DeterminateSystems/magic-nix-cache-action@main
19+
- name: Run flake checks
20+
run: nix flake check

0 commit comments

Comments
 (0)