Skip to content

Added Nested State ( missing tests ) #8

Added Nested State ( missing tests )

Added Nested State ( missing tests ) #8

Workflow file for this run

name: Test
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1
- name: Configure CMake
run: cmake -S . -B build
- name: Build
run: cmake --build build --config Release
- name: Run tests
run: ctest --output-on-failure --test-dir build