mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:53:55 -05:00
21 lines
310 B
YAML
21 lines
310 B
YAML
|
name: Check flake
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- uses: cachix/install-nix-action@v20
|
||
|
|
||
|
- name: Check if flake.nix still evaluates
|
||
|
run: nix flake check
|