Skip to content

CI workflow

CI workflow #1

Workflow file for this run

name: Build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Configure CMake
run: cmake -B build -S ${{ github.workspace }}
- name: Build
run: cmake --build build -j