From 4b0d2eb5b6365a8c8cffa9ef2b41f61d9adca417 Mon Sep 17 00:00:00 2001 From: Lyubomir Penev Date: Wed, 22 Oct 2025 14:11:08 +0200 Subject: [PATCH] Added actions workflow --- .gitea/workflows/attempt-build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/attempt-build.yaml diff --git a/.gitea/workflows/attempt-build.yaml b/.gitea/workflows/attempt-build.yaml new file mode 100644 index 0000000..992a214 --- /dev/null +++ b/.gitea/workflows/attempt-build.yaml @@ -0,0 +1,18 @@ +name: Build Code +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - name: Configure + run: ./configure + + - name: Run make + run: make