From 5d95b3e05c1bf7175b201c714aa8284f384f22b6 Mon Sep 17 00:00:00 2001 From: Kodi Craft Date: Fri, 21 Jun 2024 12:38:05 +0200 Subject: [PATCH] Add basic action for building and testing --- .gitea/build.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/build.yaml diff --git a/.gitea/build.yaml b/.gitea/build.yaml new file mode 100644 index 0000000..e1b7849 --- /dev/null +++ b/.gitea/build.yaml @@ -0,0 +1,15 @@ +name: Build library & run tests +on: [push] + +jobs: + build: + runs-on: nix + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Build & test + run: nix build + - name: Upload result + uses: actions/upload-artifact@v3 + with: + name: result \ No newline at end of file