Skip to content

Update readme for LibGUI #13

Update readme for LibGUI

Update readme for LibGUI #13

Workflow file for this run

name: Linux Build
on: [push, pull_request]
jobs:
Linux-Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install cmake gcc g++ ninja-build libsdl2-dev catch2
- name: Create build directory
run: mkdir -p build
- name: Configure CMake
working-directory: ./build
run: cmake -G Ninja ..
- name: Build
working-directory: ./build
run: cmake --build .
- name: Run tests
working-directory: ./build
run: ctest