Files
curtle/.gitea/workflows/ci.yml
Leo Sulzbacher 431c9abcc7
Some checks failed
CI / build (push) Failing after 56s
feat: add ci, testing and base structure
2026-03-14 12:43:28 +01:00

23 lines
348 B
YAML

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