chore: add initial build configuration file for project compilation

This commit is contained in:
retoor 2025-11-23 14:45:39 +00:00
parent cfab51abd8
commit 1dfeb9c2c3

13
.gitea/workflows/main.yml Normal file
View File

@ -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