Skip to content

Commit

Permalink
Add flake check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyavolyn committed Jul 11, 2024
1 parent 0520a40 commit a9f65e2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check-flake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Flake Check

on:
push:

jobs:
flake-checks:
name: Check nix flake
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Check flake
run: nix flake check

0 comments on commit a9f65e2

Please sign in to comment.