Skip to content

Update README.md

Update README.md #3

Workflow file for this run

name: Windows build
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B build -G "Visual Studio 17 2022" -A x64
- name: Build
run: cmake --build build --config Release