Files
curtle/.gitea/workflows/ci.yml
Leo Sulzbacher 5e70354ec2
Some checks failed
CI / build (push) Failing after 13s
feat: add common vec2 and vec3 operations
2026-03-14 17:25:54 +01:00

25 lines
381 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