Skip to content

[ADD] : add github actions for Windows / Linux, Macos #1

[ADD] : add github actions for Windows / Linux, Macos

[ADD] : add github actions for Windows / Linux, Macos #1

Workflow file for this run

name: Windows
on:
push:
branches:
- master
paths-ignore:
- 'cmake/**'
- '.github/**'
- 'doc/**'
- 'samples/**'
jobs:
App_Linux_Boost_FS:
runs-on: Windows-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