Skip to content

Reduce module count by moving cards into consolidated modules #258

Reduce module count by moving cards into consolidated modules

Reduce module count by moving cards into consolidated modules #258

Workflow file for this run

name: C++ CI (Windows)
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' -y
choco install llvm ninja -y
- name: Create build directory
run: mkdir build
- name: Configure with CMake
run: cmake -S . -B build -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
- name: Build with CMake
run: cmake --build build