Skip to content

Merge pull request #5 from nodec-project/feature/add-assert #7

Merge pull request #5 from nodec-project/feature/add-assert

Merge pull request #5 from nodec-project/feature/add-assert #7

Workflow file for this run

name: build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
macos:
timeout-minutes: 15
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build tests
run: |
cmake -DNODEC_SCENE_SERIALIZATION_BUILD_TESTS=ON -B ./build
cmake --build ./build
- name: Run tests
working-directory: build
run: |
ctest -C Debug --output-on-failure