nixcfg/.github/workflows/nix-check.yml

30 lines
748 B
YAML

name: "nix-check"
on:
push:
paths-ignore:
- '*.md'
- '.github/**'
- '_img/**'
workflow_dispatch:
jobs:
fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check formatting
run: nix fmt -- -c .
eval-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check flake evaluation
run: nix flake check