Files
curtle/.gitea/workflows/ci.yml
Leo Sulzbacher 38bc78caba
Some checks failed
CI / build (push) Failing after 4s
fix: repair pipeline and use curtle.h
2026-03-14 13:02:00 +01:00

23 lines
343 B
YAML

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