Skip to content

feat: implement allocator all method #52

feat: implement allocator all method

feat: implement allocator all method #52

Workflow file for this run

name: CMake CI
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 ninja-build g++ clang
- name: Configure (CMake)
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build -j
- name: Test (ctest)
run: ctest --test-dir build --output-on-failure