feat: add ci, testing and base structure
Some checks failed
CI / build (push) Failing after 56s

This commit is contained in:
2026-03-14 12:43:28 +01:00
parent 3dd87cc5b8
commit 431c9abcc7
6 changed files with 78 additions and 0 deletions

23
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,23 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install deps
run: sudo apt install cmake
- name: build
run: |
cmake -B build
cmake --build build
- name: test
run: |
cd build
ctest