Skip to content

Set up Github Actions #1

Set up Github Actions

Set up Github Actions #1

Workflow file for this run

on: [push, pull_request]
name: Actions CI + Docs
jobs:
build_and_test:
name: uvco
runs-on: ubuntu-24.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt-get install -y clang cmake ninja-build
- run: mkdir build
- run: cd build
- run: cmake -G Ninja ..
- run: ninja
- run: ninja test