From a9f65e2e75bb7430f9faeda2a8d6d0292ec57322 Mon Sep 17 00:00:00 2001 From: Vitaliy Volynskiy Date: Thu, 11 Jul 2024 16:37:37 +0500 Subject: [PATCH] Add flake check workflow --- .github/workflows/check-flake.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/check-flake.yml diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml new file mode 100644 index 0000000..c8ced7d --- /dev/null +++ b/.github/workflows/check-flake.yml @@ -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 \ No newline at end of file