Skip to content

remove the benchmark from the cmakelists and CI workflow for now, sin… #4

remove the benchmark from the cmakelists and CI workflow for now, sin…

remove the benchmark from the cmakelists and CI workflow for now, sin… #4

Workflow file for this run

name: C++ CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install C++ dependencies
run: sudo apt update && sudo apt install -y build-essential cmake libgtest-dev # libbenchmark-dev
- name: Setup
run: cmake -B out -S .
- name: Build
run: cmake --build out/
- name: Unit Tests
run: ./out/unit_tests