Skip to content

Add branch to gitmodules #37

Add branch to gitmodules

Add branch to gitmodules #37

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@latest
- name: Create build directory
run: mkdir build
- name: Configure CMake
run: cmake -B build -S .
- name: Build
run: cmake --build build --parallel 4