Files
curtle/.gitea/workflows/ci.yml
Leo Sulzbacher 2885daf577
All checks were successful
CI / build (push) Successful in 13s
fix: apply hotfix-0001
fixes the ci pipeline
Reviewed-on: #1
2026-03-14 13:44:35 +01:00

25 lines
379 B
YAML

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