Skip to content

Huge update

Huge update #161

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Configure RandR
run: |
sudo apt-get update
sudo apt-get install xorg-dev libglu1-mesa-dev
- name: Configure CMake
run: cmake -B build -S .
- name: Build
run: cmake --build build
- name: Run tests
run: ./build/unit_tests