-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (38 loc) · 1.01 KB
/
nix.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Nix CI
on:
pull_request: {}
push:
branches:
- main
jobs:
nix-flake-check:
name: nix flake check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
with:
# Helps avoid rate limiting
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix flake check --all-systems --keep-going
nix-develop:
name: test nix dev shell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
with:
# Helps avoid rate limiting
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix develop -c true
nix-fmt:
name: nix fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
with:
# Helps avoid rate limiting
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix fmt
- run: git diff --color=always --exit-code