Skip to content

Python and Code Cleanup #78

Python and Code Cleanup

Python and Code Cleanup #78

Workflow file for this run

name: Project Unit Tests
on:
push:
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install build tools
run: sudo apt-get update && sudo apt-get install -y cmake build-essential
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build -j
- name: Run gtests
run: ctest --test-dir build --output-on-failure