Skip to content

Merge branch 'master' of https://github.com/danielaparker/jsoncons in… #1732

Merge branch 'master' of https://github.com/danielaparker/jsoncons in…

Merge branch 'master' of https://github.com/danielaparker/jsoncons in… #1732

Workflow file for this run

name: macOS
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: cmake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On -DCMAKE_CXX_STANDARD=17 -DCMAKE_CXX_STANDARD_REQUIRED=ON
- name: build
run: cmake --build build --parallel 10
- name: test
run: cd build ; ctest -j 10 --output-on-failure