From 0e0aac1d3f5a43d8e7fc7080bf668aa2d74259a2 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 27 Jun 2024 13:58:58 +0200 Subject: [PATCH 1/2] feat: Add .gitignore file - A .gitignore file has been added to the project root directory. - This file is configured to exclude .idea directory which often contains IDE specific settings that should not be part of the repo. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c6ef218 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea + From 8f8e0cafb722ac2a2872380bec95e381bcc22ba2 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 27 Jun 2024 13:59:12 +0200 Subject: [PATCH 2/2] feat: Add nix workflow file - Created a new workflow, nix.yaml, in the .forgejo folder - This workflow runs Nix build on each push event --- .forgejo/workflows/nix.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .forgejo/workflows/nix.yaml diff --git a/.forgejo/workflows/nix.yaml b/.forgejo/workflows/nix.yaml new file mode 100644 index 0000000..98f7ee0 --- /dev/null +++ b/.forgejo/workflows/nix.yaml @@ -0,0 +1,6 @@ +on: [push] +jobs: + build: + runs-on: nix + steps: + - run: nix build -L .runner