From 1dfeb9c2c32a2854e10bc9e507dd1af051290f81 Mon Sep 17 00:00:00 2001 From: retoor Date: Sun, 23 Nov 2025 14:45:39 +0000 Subject: [PATCH] chore: add initial build configuration file for project compilation --- .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