-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 930 Bytes
/
check.yml
File metadata and controls
37 lines (35 loc) · 930 Bytes
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
name: Flake Check & Format
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Nix
uses: DeterminateSystems/nix-installer-action@v13
- name: Check cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run Checks
run: nix flake check
# format:
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v4
# - name: Setup Nix
# uses: DeterminateSystems/nix-installer-action@v13
# - name: Check cache
# uses: DeterminateSystems/magic-nix-cache-action@main
# - name: Run Format
# run: nix fmt
# - name: Commit changes
# uses: stefanzweifel/git-auto-commit-action@v5
# with:
# commit_message: Auto-format Flake