Skip to content

[RFR] : code Formating #30

[RFR] : code Formating

[RFR] : code Formating #30

Workflow file for this run

name: Osx
on:
push:
workflow_run:
workflows:
- scheduled
branches:
- master
types:
- requested
jobs:
build_Osx:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
ref: master
- name: checkout submodules
run : git submodule update --init --recursive
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON
- name: build
run: cmake --build build
- name: test
run: ctest --output-on-failure