Skip to content

Workflow file for this run

name: Macos
on:
push:
branches:
- master
paths-ignore:
- 'cmake/**'
- '.github/**'
- 'doc/**'
- 'samples/**'
jobs:
App:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
ref: master
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release
- name: build
run: cmake --build build --config Release