From 95d40800f42af39f3c1c7b919ddd8c60e9e31de0 Mon Sep 17 00:00:00 2001
From: Savanni D'Gerinel <savanni@luminescent-dreams.com>
Date: Thu, 27 Mar 2025 23:52:37 -0400
Subject: [PATCH] Set up a nix build job

---
 .gitea/workflows/actions.yaml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml
index 4dd001d..f3d5553 100644
--- a/.gitea/workflows/actions.yaml
+++ b/.gitea/workflows/actions.yaml
@@ -17,3 +17,14 @@ jobs:
         run: |
           ls ${{ gitea.workspace }}
       - run: echo "This job's status is ${{ job.status }}."
+
+  build-flake:
+    runs-on: native
+    steps:
+      - name: Checkout repository code
+        uses: actions/checkout@v4
+      - name: Build the apps
+        run: nix build .#all
+      - name: Check the end of the build
+        run: ls ${{ gitea.workspace }}/result/bin
+