mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:13:55 -05:00
8af90582f1
added automatic `nix flake check` action on push.
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
|