Skip to content

Try building on windows #22

Try building on windows

Try building on windows #22

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Setup CMake
uses: lukka/get-cmake@v4
- name: Create build directory
run: mkdir build
- name: Configure CMake
run: cmake -B build -S .
- name: Build
run: cmake --build build --parallel 4