Skip to content

Merge pull request #1 from cloudnative0x0/cp-queue #2

Merge pull request #1 from cloudnative0x0/cp-queue

Merge pull request #1 from cloudnative0x0/cp-queue #2

Workflow file for this run

name: CI Workflow
on:
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build --parallel
- name: Run tests
run: ctest --test-dir build --output-on-failure