From 7c2c03aa4093c7ae110ef8b0f301c8144874f883 Mon Sep 17 00:00:00 2001 From: Kodi Craft Date: Fri, 21 Jun 2024 12:43:15 +0200 Subject: [PATCH] Implement workflow for building and testing library --- .gitea/workflows/build.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..d2231e3 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,11 @@ +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 \ No newline at end of file