From 0910ade8dc6e46dc8287903deda490cd4564257c Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Thu, 30 Jul 2026 18:34:29 -0400 Subject: [PATCH] Add flake check workflow --- .gitea/workflows/push.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/push.yaml diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml new file mode 100644 index 0000000..8a615aa --- /dev/null +++ b/.gitea/workflows/push.yaml @@ -0,0 +1,22 @@ +name: Push workflow + +on: push + +jobs: + flake-check: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@v12 + with: + nix_path: nixpkgs=channel:nixos-unstable + extra_conf: | + experimental-features = nix-command flakes + + - name: Flake check + run: nix flake check