Skip to content

feat: Add event bus to broadcast events internally #13

feat: Add event bus to broadcast events internally

feat: Add event bus to broadcast events internally #13

Workflow file for this run

name: Windows Build
on:
push:
branches: [ "main", "master" ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --config Release --parallel
- name: Test
working-directory: build
run: ctest --build-config Release