fix: repair pipeline and use curtle.h

This commit is contained in:
2026-03-14 13:02:00 +01:00
parent 431c9abcc7
commit 1d8c91c0be
2 changed files with 9 additions and 1 deletions

View File

@@ -10,7 +10,9 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: install deps - name: install deps
run: sudo apt install cmake run: |
apt update
apt install cmake
- name: build - name: build
run: | run: |

View File

@@ -0,0 +1,6 @@
#ifndef CURTLE_H
#define CURTLE_H
#include "curtle/linear_algebra.h"
#endif