From 2dae3f98e9b0b01a645364ee037b732fdf501920 Mon Sep 17 00:00:00 2001 From: retoor Date: Sun, 23 Nov 2025 15:45:39 +0100 Subject: [PATCH] Added build file. --- .gitea/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/main.yml diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml new file mode 100644 index 0000000..45f0513 --- /dev/null +++ b/.gitea/workflows/main.yml @@ -0,0 +1,13 @@ +name: Build and Test +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Build + run: make + - name: Test + run: make test